intothemiddle
08-02-2003, 07:38 PM
Hi All,
I need to use msxml3.dll (its used within a COM object Ive installed)
However I get the following:
----------
msxml3.dll error '80070005'
Access is denied.
page.asp, line 33
----------
On the following script:
Response.Buffer = True
ON ERROR RESUME NEXT
Dim objXMLHTTP, xml
'Set xml = Server.CreateObject("Microsoft.XMLHTTP")
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
xml.Open "GET", "http://www.yahoo.com/", False
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
xml.Send
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
Response.Write "<h1>The HTML text</h1><xmp>"
Response.Write xml.responseText
Response.Write "</xmp><p><hr><p><h1>The HTML Output</h1>"
Response.Write xml.responseText
Set xml = Nothing
----------
I've commented out the:
'Set xml = Server.CreateObject("Microsoft.XMLHTTP")
Because I cant use that one (the COM object automatically uses the xml one.
I'm a bit stuck to say the least!!
Its a windows 2000 Advanced Server and I have full access to it.
(Through VNC anyways)
I've installed SP4 but hasnt made a blind bit of difference! argh!
Any ideas anyone??
Intothemiddle
I need to use msxml3.dll (its used within a COM object Ive installed)
However I get the following:
----------
msxml3.dll error '80070005'
Access is denied.
page.asp, line 33
----------
On the following script:
Response.Buffer = True
ON ERROR RESUME NEXT
Dim objXMLHTTP, xml
'Set xml = Server.CreateObject("Microsoft.XMLHTTP")
Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
xml.Open "GET", "http://www.yahoo.com/", False
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
xml.Send
Response.write Err.number & "<br>"
Response.Write Err.description & "<br>"
Response.Write "<h1>The HTML text</h1><xmp>"
Response.Write xml.responseText
Response.Write "</xmp><p><hr><p><h1>The HTML Output</h1>"
Response.Write xml.responseText
Set xml = Nothing
----------
I've commented out the:
'Set xml = Server.CreateObject("Microsoft.XMLHTTP")
Because I cant use that one (the COM object automatically uses the xml one.
I'm a bit stuck to say the least!!
Its a windows 2000 Advanced Server and I have full access to it.
(Through VNC anyways)
I've installed SP4 but hasnt made a blind bit of difference! argh!
Any ideas anyone??
Intothemiddle