-
SOAP response
So I'm using SOAP to pull info from a website. I'm getting a response and that works fine. However I'd like to know how to format the response.
Code:
Set xmlhttp = server.Createobject("MSXML2.ServerXMLHTTP")
xmlhttp.Open "POST",postUrl,false
xmlhttp.setRequestHeader "Content-Type", "text/xml; charset=utf-8"
xmlhttp.setRequestHeader "SOAPAction", """http://sma-promail/GetOrderInfo"""
xmlhttp.send postdata
Response.Write xmlhttp.responseText
Instead of just using Response.Write xmlhttp.responseText is it possible to break the responseText into the individual fields that are returned?