Error Consuming geocoder.us web service

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Error Consuming geocoder.us web service

    Any ideas? Seems really simple. Thanks for any help.
    Here is the error:
    [url]http://www.geocoder.us/help/[/url]




    <cfinvoke
    webservice="http://geocoder.us/dist/eg/clients/GeoCoder.wsdl"
    method="GeocoderResult"
    returnvariable="returned">
    <cfinvokeargument name="geocode" value="1600 Pennsylvania Av, Washington, DC"/>
    </cfinvoke>

    <cfoutput>
    out: #returned#
    </cfoutput>

    kaypro4 Guest

  2. Similar Questions and Discussions

    1. Consuming Web Service Error
      Hello, I know there's several similar posts, but I thought I'd give this a shot: I'm trying to consume a CFC as a webservice. The CFC can be...
    2. Error consuming web service
      Hi I am trying to access a web method which is on my local server from a vb.net client which is also on the same server. In client I am using the...
    3. consuming web service
      hi there, I'm new on web services... I've already created a webservice and created the proxy class using wsdl. How can I create a .asp page...
    4. Consuming a web service from VB 6
      Hi, I have written a web service use ASP.NET I can access i from VB 6 via XMLHTTP and everything works fine until I try to pass parameters to...
    5. Error in consuming .Net Web Service through an ASP client
      maybe try a different newsgroup: microsoft.public.msdn.soaptoolkit "Sriram Mallajyosula" <kooldoode2002@yahoo.com> wrote in message...
  3. #2

    Default Re: Error Consuming geocoder.us web service

    i've always used REST w/those guys.

    <cfhttp
    url="http://rpc.geocoder.us/service/rest?address=#urlencodedFormat(address)#"
    method="GET" charset="utf-8"/>

    i might have something SOAP though i kind of vaguely recall it not working.
    let me dig into my archives.

    PaulH Guest

  4. #3

    Default Re: Error Consuming geocoder.us web service

    you're in luck (though i don't know why we used REST rather than the SOAP):

    <cfscript>

    geocoder=createObject("webservice","http://geocoder.us/dist/eg/clients/GeoCoder
    ..wsdl");
    geocoder.setUsername(userName);
    geocoder.setPassword(password);
    geocodeResults=geocoder.geocode_address("1600 Pennsylvania Av, Washington,
    DC");
    </cfscript>

    <cfoutput>
    <cfloop index="i" from="1" to="#arrayLen(geocodeResults)#">
    #geocodeResults[i].getLat()#, #geocodeResults[i].get_Long()# <br>
    </cfloop>
    </cfoutput>

    PaulH Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139