You can also use post using xml to a backend message router. such as:
set xmlHttp = server.CreateObject("MSXML2.xmlHttp")
xmlHttp.Open "POST", "http://devmessagertr:190/router.aspx", False
xmlHttp.setRequestHeader "Content-type", "application/xml"
xmlHttp.send strGatewayXML
retval = xmlHttp.Status
if retval > 199 and retval < 203 then
Response.Status = "202 OK"
else
response.status = "406 Not Acceptable"
end if
where strGatewayXML is your xml
|