I was wondering how to post an XMLDocument via HTTP using System.Xml. The response will be synchronous.
With MSXML it's simple, you just use:
Dim xmlSender As New MSXML2.XMLHTTP
xmlSender.open("POST", urlToPostTo, False)
xmlSender.send(xmlToSend.xml)
However, I can't find how to do it with System.Xml instead of MSXML. What's the System.Xml equivalent of MSXML2.XMLHTTP?
With MSXML it's simple, you just use:
Dim xmlSender As New MSXML2.XMLHTTP
xmlSender.open("POST", urlToPostTo, False)
xmlSender.send(xmlToSend.xml)
However, I can't find how to do it with System.Xml instead of MSXML. What's the System.Xml equivalent of MSXML2.XMLHTTP?