Hello,
I've got an XML file on my serveur, and my parteners have to access it via a javascript i'm coding.
It's working perfectly in local, but as soon as i do :
xmlDoc.async=false;
xmlDoc.load("/export/export.xml");
to
xmlDoc.load("http://www.something.com/export/export.xml");
It stopped working. I know that it's to avoid XSS attack, but there is no point in my case to developp that JS script if they cannot access to my XML file.
So, how to bypass such limitation ?
thanks.