On Jul 22, 9:37 am, pinzerik <[email protected]> wrote:
> Great!!!!!
> I carefully tryed to do all steps but I get this warning during
> geocoding process (it stops without output coordinates data):

Your error (translated as "Unable to connect. Connected party did not
properly respond after a period of time or lack of response from the
host connected.") means *either* that your program can't connect to
the geocoding service *or* that the geocoder took more than 30 seconds
to respond. The second is extremely unlikely.

There are various hints to follow in the article: "If your server is
enabled with PHP 5 and the SimpleXML extension, it is preferable to
retrieve XML output. Use the PHP simplexml_load_file function to
create an XML object from the geocoder response, and use XPath
expressions to extract the coordinates and status code. If you are
using PHP4 instead, you can still retrieve CSV output and process
those results. Use the PHP function file_get_contents to retrieve the
CSV response, and then split to separate out the coordinate values and
status code of the returned CSV."

However, as it's server-side there's not a great deal anyone else can
do. You need to check what version of PHP you have, and whether you
have the SimpleXML extension. Or: use the PHP4 code which is given in
the article.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to