Forum Moderators: coopster
Here is my sample code in ASP:
<%@LANGUAGE="VBScript"%>
<%
Dim xmlhttp
Set xmlhttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
xmlhttp.Open "POST", "https://www.somewebsite.com/xyz.jsp", False
xmlhttp.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" xmlhttp.send "Variable=1"
if (xmlhttp.status <> 200 ) then
response.write "Post FAILED"
else
response.write "Post SUCCESSFUL"
response.write "returned status=" & xmlhttp.status
end if
'Below is the object that generates the msxml3.dll error 'c00ce56e' by the MSXML2 Object
response.write xmlhttp.responseText
Set xmlhttp = Nothing
%>
Thank you in advance.