sentinelws
September 23rd, 2003, 07:43 AM
I have a page which uses XMLHTTP to get the output from an ASP page to create a printer-friendly web page to print it out to a client's local printer. I have defined the XMLHTTP object:
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
then I use this bit to get the page data
objXMLHTTP.Open "GET", RefPage, False
which doesn't cause any errors but this bit:
objXMLHTTP.Send
causes a Permission Denied error. Searched Google and found a few references but no solutions. The web site is installed on a Win2000 server running IIS5 and my local client here is also a Win2000 machine.
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
then I use this bit to get the page data
objXMLHTTP.Open "GET", RefPage, False
which doesn't cause any errors but this bit:
objXMLHTTP.Send
causes a Permission Denied error. Searched Google and found a few references but no solutions. The web site is installed on a Win2000 server running IIS5 and my local client here is also a Win2000 machine.