I have a problem with this is code:
Set oXmlHTTP = CreateObject(\"Microsoft.XMLHTTP\")
oXmlHTTP.Open \"POST\", \"http://www.oursite.com/WebServices/ourServic
You're missing the:
Set xmlResp = oXmlHTTP.responseXML
This gives you access to an Msxml2.DOMDocument object. How you get the data from that really depends on the format of your soap response.
It should probably look something like this:
<% Set nodes = xmlResp.getElementsByTagName("returnVal") %>
<ul>
<% For Each node in nodes %>
<li><%=node.text%></li>
<% Next %>
</ul>
See also:
Consuming web services in classic asp