472,146 Members | 1,417 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,146 software developers and data experts.

MSXML2.XMLHTTP.3.0 error

I am running the following code and I get an error:

Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP.3.0")
xmlHttp.Open "Get", URLToRSS, false
xmlHttp.Send
RSSXML = xmlHttp.ResponseText

The error is:

msxml3.dll error '800c0005'
The system cannot locate the resource specified.

It points to the "xmlHttp.Send" statement.

This code runs perfectly on my old ISP's server but not on my GoDaddy
server.

Any ideas?
Jul 26 '07 #1
2 18889
"Dave" <br**@pitt.orgwrote in message
news:MP************************@news.west.cox.net. ..
I am running the following code and I get an error:

Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP.3.0")
xmlHttp.Open "Get", URLToRSS, false
xmlHttp.Send
RSSXML = xmlHttp.ResponseText

The error is:

msxml3.dll error '800c0005'
The system cannot locate the resource specified.

It points to the "xmlHttp.Send" statement.

This code runs perfectly on my old ISP's server but not on my GoDaddy
server.

Any ideas?

Use MSXML2.ServerXMLHTTP.3.0, XMLHTTP should not be used the server context.

If that doesn't fix it can you visit the URL using a browser running on the
server?

Check for any proxy server configuration on the server.
--
Anthony Jones - MVP ASP/ASP.NET
Jul 26 '07 #2
In article <uO**************@TK2MSFTNGP05.phx.gbl>, An*@yadayadayada.com
says...
"Dave" <br**@pitt.orgwrote in message
news:MP************************@news.west.cox.net. ..
I am running the following code and I get an error:

Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP.3.0")
xmlHttp.Open "Get", URLToRSS, false
xmlHttp.Send
RSSXML = xmlHttp.ResponseText

The error is:

msxml3.dll error '800c0005'
The system cannot locate the resource specified.

It points to the "xmlHttp.Send" statement.

This code runs perfectly on my old ISP's server but not on my GoDaddy
server.

Any ideas?


Use MSXML2.ServerXMLHTTP.3.0, XMLHTTP should not be used the server context.

If that doesn't fix it can you visit the URL using a browser running on the
server?

Check for any proxy server configuration on the server.
Yes, I can visit the URL in my browser. And THANK YOU SO MUCH. You're
solution worked. :)
Jul 26 '07 #3

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by Tanmay Saxena via .NET 247 | last post: by
2 posts views Thread by Maris Janis Vasilevskis | last post: by
3 posts views Thread by BjörnHolmberg | last post: by
2 posts views Thread by noOby | last post: by
reply views Thread by Saiars | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.