'80072ee7' error
"msxml3.dll error '80072ee7'
The server name or address could not be resolved"
For your info, I got this error when I try to access the local address (internal ip) of my remote server, attempting to grab content from another webpage (RSS news grabber).
My code is below. Can anyone pls. explain to me what is serverXMLHTTP? Do I need to install this in my server? Where can I get this? I am really not famiiiar with this XML. Pls help me.
if xmlstatus="none" or xmlstatus="update" then
Dim xmlhttp
Set xmlhttp = Server.CreateObject("MSXML2.ServerXMLHTTP.3.0")
xmlhttp.Open "GET", sourceFile, false
xmlhttp.Send
|