Does anyone know what this message means
running on a NT4 server.
msxml3.dll error '800c0005'
The system cannot locate the resource specified.
/ciswebpl/research/rss_reader.asp, line 54
Line 54 is "xmlhttp.send"
'>>>>>>>> Load an RSS/RDF file and process it.
Public Function ParseLocation(URL)
ChannelRSSURI = URL
set xmlObj = Server.CreateObject("Msxml2.DOMDocument.3.0")
set xmlhttp= Server.CreateObject("Msxml2.XMLHTTP.3.0")
xmlObj.validateOnParse = false
xmlObj.async = false
xmlObj.preserveWhiteSpace = false
xmlhttp.open "GET", ChannelRSSURI, False
xmlhttp.send
rssXML_Data = xmlhttp.responseXML.xml
' --------- PHP-Nuke & PostNuke compatabilaty --------------------------------
rssXML_Data = replace(rssXML_Data, "<!DOCTYPE", "<!--DOCTYPE")
rssXML_Data = replace(rssXML_Data, "rss-0.91.dtd"">", "rss-0.91.dtd""-->")
' ----------------------------------------------------------------------------
xmlObj.loadXML(rssXML_Data)
If xmlObj.parseError.errorCode = 0 then
ValidLocation = true
else
ValidLocation = false
end if
running on a NT4 server.
msxml3.dll error '800c0005'
The system cannot locate the resource specified.
/ciswebpl/research/rss_reader.asp, line 54
Line 54 is "xmlhttp.send"
'>>>>>>>> Load an RSS/RDF file and process it.
Public Function ParseLocation(URL)
ChannelRSSURI = URL
set xmlObj = Server.CreateObject("Msxml2.DOMDocument.3.0")
set xmlhttp= Server.CreateObject("Msxml2.XMLHTTP.3.0")
xmlObj.validateOnParse = false
xmlObj.async = false
xmlObj.preserveWhiteSpace = false
xmlhttp.open "GET", ChannelRSSURI, False
xmlhttp.send
rssXML_Data = xmlhttp.responseXML.xml
' --------- PHP-Nuke & PostNuke compatabilaty --------------------------------
rssXML_Data = replace(rssXML_Data, "<!DOCTYPE", "<!--DOCTYPE")
rssXML_Data = replace(rssXML_Data, "rss-0.91.dtd"">", "rss-0.91.dtd""-->")
' ----------------------------------------------------------------------------
xmlObj.loadXML(rssXML_Data)
If xmlObj.parseError.errorCode = 0 then
ValidLocation = true
else
ValidLocation = false
end if