On Apr 24, 8:12 am, Martin <[email protected]> wrote:
> I'd suspect that with the dummy parameter in the URL, that your
> webserver is not serving the XML - it's returning a 404 error perhaps?
Filenames need ? before the list of parameters, and each parameter
separated by &.
When you quoted earlier
> request.open("GET", url+"&dummy="+Math.random(), true);
the url already had a querystring on the end, so &dummy was the
correct thing to add. If you don't already have a ? in your URL, you
need to use it:
> request.open("GET", url+"?dummy="+Math.random(), true);
Things really would be far easier if you READ THE POSTING GUIDELINES
AND POST A LINK. You have already been explicitly asked for a link,
twice.
Andrew
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---