Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

msxml3.dll error '800c0005'

Status
Not open for further replies.

sx3

Technical User
Jun 27, 2003
45
0
0
GB
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top