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

XMLHTTP send

Status
Not open for further replies.

nicklieb

Programmer
Oct 17, 2002
383
GB
since the end of last week an automated script has stopped running that use XMLHTTP to send an xml file to script across the internet.

it's pretty standard stuff (i've posted on the the send script)

Code:
Set objHTTPXML = Server.CreateObject("Microsoft.XMLHTTP")
objHTTPXML.open "GET","[URL unfurl="true"]http://theURLgoeshere[/URL] -- * edited out", False
objHTTPXML.setRequestHeader "Content-type", "text\xml" 
objHTTPXML.send(sXML) 
response.write(objHTTPXML.responseText)

now last week this worked correctly and now it gives an error of

Code:
'800c0005'

/sendfile.asp, line 112
line 112 is the send command.

I have tested the same script on my dev server and it works fine.

This server is NT4, IIS4.

The strange thing is that I have a smilar script running elsewhere on the server to UPS courier interaction.

I have google on the error code and as usual it produces not alot to go.

Any ideas why it would just stop?
 
well the only think i would like to point out is if the URL actually exists. but u r saying that it works locally...

Known is handfull, Unknown is worldfull
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top