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!

how to send a xml file using httpreq

Status
Not open for further replies.

joakimhan

Technical User
Jul 9, 2001
12
SE
I am trying to upload a xml file to a server but I do get the following error message
--------
Server object, ASP 0177 (0x800401F3)
Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: /sommar2001/tack.asp, line 32
-------

I am using this code

------
Dim HttpReq
Dim XmlDoc
set HttpReq = Server.CreateObject("MSXML2.ServerXMLHTTP30")//this is line 32
set XmlDoc = Server.CreateObject("MSXML2.DOMDocument3")
XmlDoc.async = False
XmlDoc.Load ("getchannel.xml")

HttpReq.open "POST", " False

HttpReq.send XmlDoc

--------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top