Forum Discussion
shivausum
13 years agoOccasional Contributor
var http = Sys.OleObject("MSXML2.XMLHTTP");
http.open("POST", "url", false);
http.setRequestHeader("Content-Type", "text/xml");
argumentString = "Data to send in the form of a string"
http.send(argumentString);
Log.Message(http.responseText);