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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

msxml4.dll error '800c0005'

Status
Not open for further replies.

dave755

IS-IT--Management
May 3, 2001
69
US
I am trying to POST a message to a CGI script that is running on my local machine.
The W2K-S/IIS server is on a separate machine.

When I am connected to the server on the local subnet (192.168.0.xxx), my ASP code works correctly. When I connect to the server using a dial-up connection to an external ISP, I get the 800c0005 error.

Here is the ASP code:
Code:
    Set objXMLhttp = Server.CreateObject("MSXML2.XMLhttp.4.0")
    response.write "Created...<br>"
    objXMLhttp.Open "POST", postURL, false
    response.write "Opened...<br>"
    objXMLhttp.Send postBody
    response.write "Sent...<br>"

Here is the response when I am connected by dial-up:

Code:
postURL= [URL unfurl="true"]http://notebook/HESCode/HACP.cgi[/URL]
postBody= ?command=GetParam&version=3.5&session_id=000020046AA&AICC_Data=""
Created...
Opened...

msxml4.dll error '800c0005' 

The system cannot locate the resource specified. 

/Launch.asp, line 89

Notice that the CGI script is referenced to my local machine and that the error happens on the "Send" line.

Any tips about how to fix this error would be most appreciated.

Thank you,
Dave

Dave Gee
 
Surely you just need to host the CGI script on the external server and change the postURL line to point to that copy of the CGI script.

Tony
reddot.gif WIDTH=500 HEIGHT=2 VSPACE=3

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top