Hello,
I cannot get XMLHttpRequest to work in my application using JavaScript. The snippet of code below works fine in a PC browser but does not work in Appery.IO
Are their any special config files, server permissions that I need to provide? I can browse to the XML file from my PC. But it does not seem to work within Appery.
Thanks
Phillip
alert("Begin XMLHttpRequest");
var xhr;
xhr = new XMLHttpRequest();
xhr.open('GET', 'http://www.w3projects.com/RSS/ALT001....);
//^^ Call does not work in Appery ^^//
xhr.send();
alert("xhr response " + xhr.responseXML);
alert("xhr ready state " + xhr.readyState);
var xmlDoc;
xmlDoc = xhr.responseXML;