G
Guest
Hi, I'm trying to do an elementary non-postback page refresh and the
following (edited) javascript snippet defines my problem:
xhttp = new ActiveXObject("Msxml2.XMLHTTP");
xhttp.onreadystatechange = HandlerOnReadyStateChange;
xhttp.open("GET", http://jeb.tzo.com/xmlr/sample.ashx?portfolio=1,
false);
xhttp.send();
When this code is run on a browser running on the server, it works. The
OnReadyStateChange event fires. But, when it is run on a remotely situated
browser it does not work. You can see it fail here:
http://www.geocities.com/jebbushell/xmlr/sample.htm
Could this be a permissions issue? Does IIS somehow know when the request
is local? I'm using XP2.
Also, do I need a book? So far, none of the web articles/tutorials has
given me a completely satisfactory outcome. Your advice could really help me.
Thanks,
Jeb.
following (edited) javascript snippet defines my problem:
xhttp = new ActiveXObject("Msxml2.XMLHTTP");
xhttp.onreadystatechange = HandlerOnReadyStateChange;
xhttp.open("GET", http://jeb.tzo.com/xmlr/sample.ashx?portfolio=1,
false);
xhttp.send();
When this code is run on a browser running on the server, it works. The
OnReadyStateChange event fires. But, when it is run on a remotely situated
browser it does not work. You can see it fail here:
http://www.geocities.com/jebbushell/xmlr/sample.htm
Could this be a permissions issue? Does IIS somehow know when the request
is local? I'm using XP2.
Also, do I need a book? So far, none of the web articles/tutorials has
given me a completely satisfactory outcome. Your advice could really help me.
Thanks,
Jeb.