User1416033902 posted
Hi all,
How can I rewrite this VBA code with System.xml in .NEt
'Create Constants
Set d_objxmlHttp = CreateObject("MSXML2.serverXMLHTTP")
Call d_objxmlHttp.Open("POST", sc_url, False)
Call d_objxmlHttp.setRequestHeader("Content-Type", "text/xml")
Call d_objxmlHttp.setRequestHeader("SOAPAction", sc_url)
d_stringSoapMsg = MySOAPXMLString(sc_user, sc_pass, sc_org, sc_tenant, sc_Var)
d_objxmlHttp.send (d_stringSoapMsg)
SOAPCall = d_objxmlHttp.responseXML.XML