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

Trying to post xml, do anyone know this problem

Status
Not open for further replies.

joakimhan

Technical User
Jul 9, 2001
12
SE
I am trying to sen a xml file to a server but i get an error code.

------------------------
Error Type:
msxml3.dll (0x800C0006)
System error: -2146697210.
/sommar2001/tack.asp, line 50
------------------------

This is the code that sends the xml file
The last line is line 50

-----------------------------
DIm HttpReq
Dim XmlDoc


set HttpReq = CreateObject("MSXML2.ServerXMLHTTP.3.0")
set XmlDoc = CreateObject("MSXML2.DOMDocument.3.0")

XmlDoc.async = False
XmlDoc.Load ("getchannel.xml")
(" HttpReq.open "POST", " False

HttpReq.send XmlDoc /// this is line 50
----------------------------------

is my code wrong or is it something with the dll
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top