|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| 01/09/2009 at 07:42AM PST, ID: 24038687 | Points: 50 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: |
object obj = Server.CreateObject("Msxml2.ServerXMLHTTP.4.0");
//object obj = Server.CreateObject("Msxml2.ServerXMLHTTP");
string sUrl = "MYURL";
MSXML2.ServerXMLHTTP objXmlHttp = (MSXML2.ServerXMLHTTP)obj;
objXmlHttp.open("POST", sUrl, false, "", "");
objXmlHttp.setRequestHeader("MessageType", "call");
objXmlHttp.setRequestHeader("Content-Type", "text/xml");
objXmlHttp.send(bodySTR);
Response.Write(objXmlHttp.responseText);
return true;
|
Advertisement