Geocoding an address using the Google web service

Hello

Is it possible to access Google geocoding web service from an Oracle procedure? If Yes, then can you please give an example?
I want to provide an address that is not formatted as an input parameter and get the coordinates, if the address is valid.

Thank you
M.R.

Hello M.R.,.

Yes, it is possible.

Here is an example that I use myself:

 create or replace function getLatLon( p_address varchar2 ) return varchar2 is
    l_http_req  utl_http.req;
    l_http_resp utl_http.resp;
    l_response long;
    l_latlon long;  

    l_responsecode number;
    l_accuracy number;

    l_google_key varchar2(100 char) := 'Put_your_google_key_here';

  begin  

    l_http_req := utl_http.begin_request(
      url => 'http://maps.google.com/maps/geo' ||
             '?q=' || utl_url.escape( url=> p_address, url_charset=> 'utf-8' ) ||  -- address to geocode
             '&output=csv' ||                         -- simplest return type
             '&gl=DE' ||                                 -- set this to your own country code
             '&key=' || l_google_key              -- Google API site key
    );

    l_http_resp := utl_http.get_response( l_http_req );
    utl_http.read_text( l_http_resp, l_response );
    utl_http.end_response( l_http_resp );  

    l_latlon := substr( l_response, instr( l_response, ',', 1, 2 ) + 1 );  

    l_responsecode := substr(l_response,0,3);
    l_accuracy := substr(l_response,5,1);

    if l_responsecode = 200 and l_accuracy >= 8 then
      return l_latlon;
    else
      return l_latlon;
    end if;

  exception
    when others then return null;
  end getLatLon;

This code uses the older v2 of the google api, so you still need a google api for that key. But it shouldn't be hard to change the code to use the new api v3.

Hope this helps,
Dirk

Tags: Database

Similar Questions

  • The implementation of RunProgramInGuest of VIX using the vSphere Web Services SDK?

    Hello

    A few months ago I developed a python API for VIX, but as I needed to extend the functionality of this API (performance monitoring, host management, etc.) I moved the vSphere Web Services SDK.

    However, I did find a way to implement some comments VIX as LoginInGuest or RunProgramInGuest functions using only the Web Services SDK.

    Is there a way to do this? I thought that each function VIX has been translated internally to a soap request, but now I think that is not the case for these functions of comments, if so, how VIX inwardly does them?

    Thanks for your help!

    Sebastian Tello

    Currently, if you must implement specific comments operations running a specific script/application or by connecting to a guest, you must use the VIX API. This feature is not currently exposed in the vSphere API, you will need to use a combination of both, until VMware them integrates in the vSphere API core. For more details on the future of VIX, take a look at this blog post - http://www.virtuallyghetto.com/2010/11/what-is-vmware-vix-api-and-its-future.html

  • Runtime error in workflow using the API Web service with a VC:VirtualMachine parameter

    Hello

    I took the example for the execution of a workflow using powershell via the site Web of Joerg Lew Web service API and changed to pass an input parameter to the name of the Virtual Machine.

    I have no error in powershell, but when I check the events for the workflow in Orchestrator I see it failed with the error "Validation error for the parameter"vm". It's using out of the box "Start virtual machine and wait" stream  Is a problem with a virtual machine name is paid as a string? I tried to use the full name of the virtual machines and the ID.  I have provided the code below.  Can someone help with how to get this working?

    $vcoWS = new-WebServiceProxy-VCO, VCO - Namespace - Uri of the class http://192.168.1.65:8280 / vmware-vmo-webcontrol/webservice? WSDL
    $workflows = $vcoWS.getWorkflowsWithName ("Start the virtual machine and wait", "vcoadmin", "vcoadmin")
    $workflow = $workflows [0]
    # print the input parameters
    $workflow.inParameters
    # generates the table with input parameters (WorkflowTokenAttribute - objects)
    $inparams = @)
    # fill in the table, an entry for each input parameter
    $inparams += new-Object - TypeName VCO. WorkflowTokenAttribute
    $inparams [0] .name = "VM".
    $inparams [0] .Guy = "VC:VirtualMachine."
    $inparams [0] .value = "vm-113.
    #... turns on and off (use $null on $inparams if the workflow has no input parameter
    #... und implement
    $workflowToken = $vcoWS.executeWorkflow ($workflow.id, $inparams, "vcoadmin", "vcoadmin")

    Thank you

    David

    Hi David,

    > game $inparams [0] = "VC:VirtualMachine".

    This means that the type of entry for this workflow is an object of type 'VC:VirtualMachine '. So, passing the name of the virtual machine would not work. The expected value for such an entry is the string representation of an object which, in the case of the vCO is a unique object identifier. The object id unique vCO looks like this:

    dunes://service.dunes.ch/CustomSDKObject?ID= "15.23.34.34/vm-590'&dunesName='VC:VirtualMachine".

    but you don't need to know this (technically, if you know the ip address of the vCenter and the id of the virtual machine can be built but is not a recommended practice).

    The right way to find the string representation of the object "VC:VirtualMachine" with the name you need to do a few more things. I'll do the example in java and it should be easy to turn into powershell.

    QueryResult result = vcoWS.find ("VC:VirtualMachine", "xpath:name = \" vm-113\ "", username, password);

    String stringObjectRepresentation = null;

    If (result.getTotalCount () > 0) {}

    FinderResult = result.getElements () FinderResult [0];

    stringObjectRepresentation = finderResult.getDunesUri ();

    }

    Thus, the stringValue should be attributed to the line:

    $inparams [0] .value = stringObjectRepresentation

    Hope it will help.

    Without doubt, Joerg would be able to illustrate this solution with powershell later ;-)

  • Use the MapPoint Web Service with MX7

    Can anyone offer guidance for the use of Microsoft MapPoint web service? I searched around, but found no usable information. My immediate concern is how to get my CF7 application to perform Digest authentication, but I would also appreciate advice for all the other obstacles that may occur after.

    Thank you
    James

    So here's what I had to do to make this work with CF7:

    1. edit wwwroot/WEB-INF/client-config.wsdd use CommonsHTTPSender by Tom Jordahl's blog ( http://tjordahl.blogspot.com/2007/03/apache-axis-and-commons-httpclient.html).

    2. put the Commons-httpclient - 3.1.jar and Commons-codec - 1.3.jar in CFusionMX7/lib. These pots are available from the Apache Commons project ( http://commons.apache.org/).

    3. Add a web service entry in the CF administrator. For the code example works, use the name of MapPoint. The URL is the wsdl of normal staging area ( http://staging.mappoint.net/standard-30/mappoint.wsdl), and the user name and password are those issued by Microsoft for your account of mappoint.

    The CF application service must be restarted to pick up pots of apache Commons. At this point, the code example must be executable. It displays an input field you can type an address in (for example "1 microsoft way, redmond, wa") and displays a map when submitted. The code is fairly simple and does not take into account things like the possibility of several search results.

    Since this is all in CFML, some used as inputs of the function helper objects must be designed as CF structs, the data members of the java objects in mirror. This is a problem in creating a MapView object because there is no way to indicate which of the derived classes (ViewByHeightWidth, ViewByScale, etc.) you intend. My solution is to use a view object returned by GetBestMapView().

    Hope this is useful to someone.

    James

  • Impossible to activate the HP Web services for my HP Laserjet 200 MPF M276nw color

    Kindly help, I tried to update the firmware, but still my web services will not turn on.

    RGS

    G

    Hi GayleneC,

    Thank you for the update and additional information.  I really appreciate it.

    You indicated that you tried to update the firmware, I wonder because the printer is not connecting to web services that is may not have logged in to check the updates of the firmware.  I have included two links, one is for the Windows of HP LaserJet Pro Series Firmware Update Utility version , the other is for the Mac version of the HP LaserJet Pro Series Firmware Update Utility. Please choose your operating system and we will try and update the firmware without using the front panel of the printer.

    After you run the firmware update utility, please disable IPv6 wireless via built-in web server.  Please follow the steps below:

    1. To open the HP embedded Web server, type the IP address of product in a Web browser address line. When it opens, it should look like the screenshot below.

    2. Please click on the 'Network' tab as highlighted in the screenshot above.

    3. Please click on 'Advanced' in the side menu on the left as indicated above. Please disable IPv6 and click 'apply '.

    4. Please click on the "HP Web Services" tab.

    5. Please click on the button "activate". Print the newsletter of Web Services.

  • Job-Run: SELFUPDATE, unable to connect to the ConsoleJobStepExecutorService Web service working system.

    Job system failed to connect to the ConsoleJobStepExecutorService Web service. Check the OMS's WebLogic Admin Server for any issues related to Web services configuration that could cause a connection failure.

    Natural logarithm of output

    Hello world.

    I am writing from Hungary, sorry for my bad English. You can read my problem above.

    I'm looking for:

    -Oracle Cloud control 12 c version 5

    -Extensibility / auto update / check updates

    -activity of employment-

    SELFUPDATE_201511111044141 race11 November 2015 10:44:14 GMT + 01:00SYSMANRefresh updates

    but the message: error log:

    Job system failed to connect to the ConsoleJobStepExecutorService Web service. Check the OMS's WebLogic Admin Server for any issues related to Web services configuration that could cause a connection failure.

    and nothing happened.


    I would like to download and install the microsoft agent x 64 driver.


    -I can't find anything on the the red message in the internet or in the google...

    -I'm still a beginner in Oracle...

    -MOS, proxy and the credentials are OK.


    Please help me,

    Thank you for your co-operation in advance

    László

    Hi Courtney lamas-Oracle

    First of all. Thank you very much for your help!

    Yesterday, I was able to find the answer to my problem:

    So:

    1. I used consol secure with sleeve and key_strength 2048 (because there were problems connecting my Chrome, IE11 or Firefox to the Weblogic administration Console and the https certificate)

    2. I refreshed DemoIDentity, jks with certificate of keystrength from 512 to 1024 due to the blocking of the browser.

    The solution:

    sure emctl console - portfolio -key_strength 1024

    Restart the WHO

    I've been careless.

    Everything works fine now.

    LACI

  • Now, I am unable to use the Terminal Server service to connect to one of my Windows XP machines.

    Hello

    I used the Terminal Server service to connect to a remote Windows XP/Win 7 XP machine machines. At the beginning of this, it was beautiful, but after some time, say 1/2 hours, this remote XP computer has become inaccessible and even I couldn't use Teamviewer is there to connect! But when I went to this remote computer to XP, I noticed his connection was fine and I could ping www.google.com on it!

    original title: unable to connect to him

    Hello human Chen,

    Your Windows XP question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the TechNet Windows XP Networking forum.

    http://social.technet.Microsoft.com/forums/en-us/itproxpsp/threads

    I hope this helps.

  • Unable to connect to the VMware web service: invalid key file

    Hello

    We have a CPO 2.3.1 who refuses to connect to vCenter (see newspaper excerpt at the end of the post).

    Recently, we changed our server vCenter (part of a 5.1 update).

    We tried the following workarounds:

    • Remove and add all the elements of the platform from the portal using services SE
    • Re import automation packs (4 of the Starter Edition v2.3.1.38)
    • Re on the keystore password

    No change at all...

    Do you have an idea on how to fix this?

    Thank you.

    Kind regards

    Stone

    || 235. 02/10/2012 15:46:21.667 | 6072. WCF: http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord ' gravity 'Error' = >http://msdn.microsoft.com/en-US/library/System.ServiceModel.Diagnostics.TraceHandledException.aspxhandling of an exception. . Tidal.Automation.Server.exe Tidal.Scheduler.Common.Communications.CommunicationException, Tidal.Scheduler.Common, Version = 2.3.0.0, Culture = neutral, PublicKeyToken = fba593b23cf207cdthe connection attempt (VMware vCenter Server (603) @VMware vCenter Server (603)) failed due to the following error: unable to connect to the VMware web service: Invalid keystore. to Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (ServerAssistedOperation operation, target TargetConfiguration, RuntimeUserConfiguration runtimeUser)

    to Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter. & lt; & gt; c__DisplayClass1c. & lt; PerformServerAssistedOperation & gt; b__1b(IAdapter adapter)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, haltingAction Boolean, Int32 remainingRetries)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, Boolean haltingAction)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.AdapterSystem.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Server.WebService.AdapterService.PerformServerAssistedOperation (operation ServerAssistedOperation)

    at SyncInvokePerformServerAssistedOperation (Object, Object [], Object [])

    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke (object instance, entered to Object [], Object [] & amp; outputs)

    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5 (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31 (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.MessageRpc.Process (Boolean isOperationContextSet)Tidal.Scheduler.Common.Communications.CommunicationException: the connection attempt (VMware vCenter Server (603) @VMware vCenter Server (603)) failed due to the following error: unable to connect to the VMware web service: invalid key file.

    at Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (ServerAssistedOperation operation, target TargetConfiguration, RuntimeUserConfiguration runtimeUser)

    to Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter. & lt; & gt; c__DisplayClass1c. & lt; PerformServerAssistedOperation & gt; b__1b(IAdapter adapter)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, haltingAction Boolean, Int32 remainingRetries)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, Boolean haltingAction)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.AdapterSystem.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Server.WebService.AdapterService.PerformServerAssistedOperation (operation ServerAssistedOperation)

    at SyncInvokePerformServerAssistedOperation (Object, Object [], Object [])

    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke (object instance, entered to Object [], Object [] & amp; outputs)

    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5 (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31 (MessageRpc & amp; CPP)

    at System.ServiceModel.Dispatcher.MessageRpc.Process (Boolean isOperationContextSet)

    || 236. 02/10/2012 15:46:21.667 | 6072. An exception that is not of type rhapsodyexception has been captured while a webmethod call was made.  This exception has been intercepted and generic.

    || 231: 02/10/2012 15:46:21.667 | 6072. EXCEPTION (Tidal.Scheduler.Common.Communications.CommunicationException): The connection attempt (VMware vCenter Server (603) @VMware vCenter Server (603)) failed due to the following error: unable to connect to the VMware web service: invalid key file.

    Stack trace: at Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (ServerAssistedOperation operation, target TargetConfiguration, RuntimeUserConfiguration runtimeUser)

    to Tidal.Automation.Server.JavaAdapterBase.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter. <> c__DisplayClass1c. b__1b(IAdapter adapter)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, haltingAction Boolean, Int32 remainingRetries)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction, Boolean haltingAction)

    at Tidal.Automation.Engine.Core.AdapterLifecycleManager.PerformAdapterAction (Guid IDCarte, action AdapterAction)

    to Tidal.Automation.Engine.Core.Adapter.SuspendableAdapter.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Engine.Core.AdapterSystem.PerformServerAssistedOperation (operation ServerAssistedOperation)

    to Tidal.Automation.Server.WebService.AdapterService.PerformServerAssistedOperation (operation ServerAssistedOperation)

    at SyncInvokePerformServerAssistedOperation (Object, Object [], Object [])

    at System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke (object, Object [], Object [] entries & exits instance)

    at System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin (MessageRpc & CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5 (MessageRpc & CPP)

    at System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31 (MessageRpc & CPP)

    at System.ServiceModel.Dispatcher.MessageRpc.Process (Boolean isOperationContextSet)

    You have an invalid key file because the HTTPS certification has changed. You must remove the old keystore file and restart the OPC Server and then reconnect / run something against vCenter.

    It is also possible to host Adatper framework/java problems I've seen often.

    If you need more information, you will need to prosecute TAC with your service contract please. Normally, we try to solve no newspapers on the forums.

    -Shaun Roberts

    CIAC/CPO support team leader

    [email protected] / * /.

  • Using a soap Web service

    Hello

    I want to use a soap Web service.

    So far, I tried (without success) wws and am now explore gSOAP (http://www.cs.fsu.edu/~engelen/soap.html)

    It generated classes with success and I don't get any errors displayed (I just added all generated classes in the src folder), but the generation fails with:

    [...]

    CC: C:/BB10NDK/host/win32 / x 86/usr/bin/ntoarm-ld caught signal 1
    make [2]: * [o.le - v7/hellocascades] error 1
    make [1]: * [release-all] error 2
    make: * [device] error 2

    no idea how I can get the code to compile?

    Or is - what someone else has experience using a Web SOAP with the NDK?

    I managed to build the project.
    has taken about four hours with two other C developers to get all libraries and files in place.
    I'll try to run a Web service, if it is all passed, I'll write a guide

  • What value for p_print_server when you use the Rest Data Services as a print server?

    Hello

    I have my report server on the internal workspace defined as BI Publisher URL as default... It works for my BI Publisher reports.

    I have 2 reports who need to use the rest Data Services FOP engine and use GET_PRINT_DOCUMENT function Signature 4

    https://docs.Oracle.com/CD/E59726_01/doc.50/e39149/apex_util.htm#AEAPI146

    For these 2 reports, I need to pass a parameter to p_print_server. The documentation describes this as the URL for the print server

    My question is, how to find the URL for p_print_server when I want to use the rest Data Services FOP on ADR?

    I can not put as NULL as at the time, it will use the default BI Publisher URL and then these 2 reports will not work

    Moreover, when I put the server reports on internal workspace as 'Rest Data Services', my two reports work fine, but not when I put is as URL BI Publisher - which is necessary

    Help, please

    Concerning

    Matt

    Hi Matt Mulvaney,

    Matt Mulvaney says:

    I already have the correct configuration to be able to produce reports FOP including two steps you mentioned. This set works very well when I put the "Print server" preference in the settings of APEX Data Services Instance remains - and reports can be produced. But as I said, this must be set to a URL of BI Publisher.

    If you use "Print server" as "Oracle BI Publisher" then the p_print_server parameter would have been:

    http://myserver.mydomain.com:8888/xmlpserver/convert

    Where:

    • Printing of the address of the host server: myserver.mydomain.com (you can also use the IP address)
    • Print Server Port: 8888 (depending on what your BI Publisher Server uses port)
    • Print server script: / xmlpserver/convert

    Similarly, if you choose "Print server" as 'Oracle REST Data Services', the instance settings don't ask questions on the print settings, but internally it uses the following parameters and the p_print_server parameter is:

    http://myserver.mydomain.com:8080 / ADR / _ / fop2pdf

    Where:

    • Printing of the address of the host server: myserver.mydomain.com (host computer on which ADR is hosted)
    • Print Server Port: 8080 (the port used by what ADR/APEX Forum)
    • Script of the print server: / ords / _ / fop2pdf (this is not disclosed by APEX/ADR documentation, but as mentioned by Marc Sewtz in the following thread)

    Reference: Re: Apache FOP disappeared by Oracle APEX installable APEX 5.0 and 5.0.1 APEX

    Kind regards

    Kiran

  • Integration with the secure web service IS deployed on EBS

    Hello experts,

    I have a REST webservice deployed to an Instance of the EBS. I try to call the web service using a mobile application in the ADF. However, the web service is secure and requires security settings to be sent in the request header.

    Anyone can recall or explain how I can add a custom header to the object of the application for the REST web service? Any help will be appreciated.

    Thank you

    Abhishek

    Hi Abhishek,

    You can do the following:

    String theUsername = "abc";

    String thePassword = "pass";

    String userPassword = theUsername + ': ' + thePassword.

    String encoding = new sun.misc.BASE64Encoder () .encode (userPassword.getBytes ());

    restServiceAdapter.addRequestProperty ("Authorization", "Basic" + coding);

    If you use Webservice DataControl, then automatically the connection information in the login form is injected into the webservice framework.

    Kind regards

    Deepak

  • Could not contact the Flickr web service

    In recent weeks, I am unable to upload pictures directly from LR on Flickr.

    The message I get:

    "Cannot update this collection.

    Could not contact the Flickr web service. Please check your Internet connection. »


    LR version 2015.1.1

    Generation 1032027


    Flickr Pro account.


    Any advice? I'm happy test the beta fix only if available.


    I used to use the plugin to Jeffrey, and it's (I think still is) a fantastic product. Again, having a built-in feature delivered with LR has won my heart.

    BTW: it seems that the issue is on the side of Flickr and relates to their limitation (IP based) network. I don't understand why they do it and why too drastic. Try again potentially additional native plugin LR Flickr could help.

    It was enough for me to activate VPN to route traffic through a server in San Francisco and it's all very well now. My original traffic was from London.

    Boring, but has less there is a workaround.

  • Need someone with experience using the Google font!

    Make my first website using the Google font... love it! BUT I have a problem! Since then, I use a condensed font of Google, when I'm using the "split" in Dreamweaver... Dreamweaver does not actually display the police - have to do on the server because it must locate the Google font. So what is happening, he police no longer appears wide while I'm working in Dreamweaver and causing the divs to move around. Not a problem because as it appears on the server, BUT the shift of the divs overlaps the area that I need to work! Kindof hard to explain. So here's a screenshot. The word "Member" in the top left nav pushes the sidebar on the right, exactly where I need to add/edit content. Again, I KNOW it will look LIKE very well once the server when fonts are rendered using the more condensed font of Google. But will make very difficult work on these pages. Someone at - there experience this problem?Picture 4.jpg

    Dreamweaver search "Design Time style sheets" help (F1).  Choose a comparable condensed font from the library of your system fonts.

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics | Print | Media specialists
    http://ALT-Web.com/
    http://Twitter.com/ALTWEB

  • How to use google bookmark when I use the google toolbar?

    When I connect to my gmail, I use the google toolbar in firefox 7, but I can't use google bookmark and the sign showing no gray green. Whenever I want to using google bookmark, it's always written connect. How to fix? Thank you very much!

    Google has decided that they will produce is no longer the toolbar for Firefox 5 and newer version. It is better to move on to other alternatives to try any "hacks" in the toolbar which may or may not work in the future. Future versions of the Google toolbar works only with IE7-9. Google toolbar is not available on all other browsers, even own Google browser.

    To access your Google Bookmarks visit www.google.com/bookmarks.

    Alternatives:

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

    Not related to your question, but...

    You may need to update some plug-ins. Check your plug-ins and update if necessary:

  • I want to use the Google toolbar. I installed of FF7. I will be able to use the toolbar again if I go back to FF4? If so, how to do that.

    I want to use the Google toolbar. I installed of FF7. I will be able to use the toolbar again if I go back to FF4? If so, how to do that.

    If my post has solved your problem, please click the 'Solved It' button next to my first post.

Maybe you are looking for

  • Thunderbird guard sync Google calendar all day and each time it slows down.

    Every hour so Thunderbird sync Google Calendar, there are nearly 1000 events, so it takes a while. Meanwhile, Thunderbird get stuck. I have to wait for it to be ready before I can continue. Why this happens suddenly (since yesterday)? If it can't be

  • HP Pavilion 550-109: driver help

    Hi, I just bought this computer... downgraded to win 7 and I did downloand the amd chipset and I still cannot get the usb to work... Help, please... and im not that great of a tech unless you please explain step by step...

  • How to know the value of time corresponding to the indices of blood

    Hello I have my experimental data such as time, current and voltage in three columes in an excel sheet. I discovered the location of the tip (index) of the voltage signal by the Ridge detector function. Now, I want to know the peaks of voltage corres

  • What is going with my admin account

    I am running windows vista with 2 accounts.  My own (Administrator) and younger brothers.  Somehow, windows won't let me not uninstall programs etc. on my admin account, and I owe it to the second account to uninstall programs.  He asks me to type my

  • SPA112 line showing off as hook with nothing plugged

    I have an ATA that will record, but Port 2 is still showing the hook under Off status. There is nothing connected to the device outside a network connection and a power supply. This behavior always occurs after a restart, an update of the firmware an