Hi ,
I am getting issues in posting a SOAP XML and getting/displaying the response back , here is the piece of code that i am trying to use
$xmlhttp = ObjCreate("Microsoft.XMLHTTP")
$oXML = ObjCreate("Msxml2.DOMdocument.3.0")
$XmlSourceDO="..\BEAST_DASHBOARD\ActivationReq.xml"
$oXML.load ($XmlSourceDO)
$xmlhttp.open ("post","https://IP:Port/services/CAPWsController",false)
$xmlhttp.setRequestHeader ("Content-type", "application/x-www-form-urlencoded; charset=UTF-8")
$xmlhttp.setReq