gpt4 book ai didi

web-services - 在经典 ASP 中使用 SOAP Web 服务

转载 作者:行者123 更新时间:2023-12-04 04:50:28 27 4
gpt4 key购买 nike

我有一个问题,这是代码:

Set oXmlHTTP = CreateObject("Microsoft.XMLHTTP")
oXmlHTTP.Open "POST", "http://www.oursite.com/WebServices/ourService.asmx?WSDL", False

oXmlHTTP.setRequestHeader "Content-Type", "application/soap+xml; charset=utf-8"
oXmlHTTP.setRequestHeader "SOAPAction", "http://ourNameSpace/ourFunction"

SOAPRequest = _
"<?xml version=""1.0"" encoding=""utf-8""?>" &_
"<soap12:Envelope xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:soap12=""http://www.w3.org/2003/05/soap-envelope"">" &_
"<soap12:Body>" &_
"<ourFunction xmlns=""http://ourNameSpace/"">" &_
"<var1>" & Session("userid") & "</var1>" &_
"<var2>" & Session("internetid") & "</var2>" &_
"</ourFunction>" &_
"</soap12:Body>" &_
"</soap12:Envelope>"

oXmlHTTP.send SOAPRequest

它执行并没有给出错误,但我找不到任何输出,或者即使它存在我也无法解析它 - 但在这两种情况下我都不知道它。

调用后,我应该如何解析返回的 XML?

最佳答案

你错过了:

Set xmlResp = oXmlHTTP.responseXML

这使您可以访问 Msxml2.DOMDocument 目的。
您如何从中获取数据实际上取决于您的 SOAP 响应的格式。

它应该看起来像这样:
<%    Set nodes = xmlResp.getElementsByTagName("returnVal") %>
<ul>
<% For Each node in nodes %>
<li><%=node.text%></li>
<% Next %>
</ul>

也可以看看:
  • DomDocument
  • ServerXMLHTTP
  • Using ServerXMLHTTP
  • 关于web-services - 在经典 ASP 中使用 SOAP Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1079356/

    27 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com