Page is a not externally linkable
aries - 12:27 pm on Jun 14, 2004 (gmt 0)
I am using MSXML2.XMLHTTP.4.0 to retrieve data from an eternal web page (other domain) and displaying the contents in my local web page. This works perfectly when I run it from my local system. When I upload it to my Web Server and access it, then it does not work. The following is the code: var objSrvHTTP; I am getting the "access denied" error exactly at the third line where the URL is passed. Can anyone help me with this? Also, please let me know if there are any other methods to retrieve the data without using Msxml2.XMLHTTP.4.0. Thank you!
Hello there,
objSrvHTTP = new ActiveXObject("Msxml2.XMLHTTP.4.0");
objSrvHTTP.open ("GET",theURL,false);
aries