hi all, im also having trouble getting asp.net
VB to send a xml document to a server and recieve a response.
the server i need to send the xml document is also CGI based. My question is can i use these differnet platform and genereate and response even though im using asp.net from cgi?
i've tried combining my code using the system.xml
Dim xmlHTTP As Object = Server.CreateObject("MSXML2.ServerXMLHTTP")
Dim XmlDocument As New XmlDocument()
XmlDocument.Load("c:\XMLFile.xml")
Dim xmlfile As String = XmlDocument.InnerXml
xmlHTTP.open("POST", "http://xmltest.res99.com/xml/xps.cgi", False)
''Send XML document
xmlHTTP.send(xmlfile)
''Display the result
lblmsg.Text = xmlHTTP.responseText
i've combined the asp and asp.net classes together i think.
using this the cgi server still spit out saying the xml document is missing?
i just cant find the asp.net method to send the actuall xml document using asp.net.
any help will ge great
thankyou
kosta
kosta Koder