我有一个soap请求,返回如下所示的响应:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns1:authkeyResponse xmlns:ns1="urn:authkey">
<return xsi:type="xsd:string">ALREADY REGISTERED</return>
</ns1:authkeyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我按照http://kapie.com/2007/consuming-soap-web-services-from-vbscript中的示例使用vb脚本调用soap。我在strSoapReq对象中得到了整个xml,但不知道如何解析它以便我只能弹出“ALREADY REGISTERED”的结果。
答案 0 :(得分:1)
从您提供的链接示例中,请务必明确地致电GetResult
。
如果您按照示例并基于SOAP结果,则应该是:
GetResult(strResult, "result")