A security feature prevents EGeoXml directly reading files that are on 
other domains, but if your webhost supports server side scripting you 
can write a proxy server that reads a remote resource and echoes the 
data to its output stream.

The server script can be as simple as this:

<?php
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,"http://www.foo.com/data.kml";);
header("Content-type: text/xml");
curl_exec($curl_handle);
curl_close($curl_handle);
?>

-- 
http://econym.org.uk/gmap
The Blackpool Community Church Javascript Team


--~--~---------~--~----~------------~-------~--~----~
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