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
--------
--------
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
--------