1

我有一个肥皂请求返回如下响应:

<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/sumption-soap-web-services-from-vbscript中的示例使用 vb 脚本调用肥皂。我在 strSoapReq 对象中获得了整个 xml,但不确定如何解析它,以便我只能弹出“已注册”的结果。

4

1 回答 1

1

从您提供的链接的示例中,请确保您GetResult明确调用。

如果您按照示例并根据您的 SOAP 结果,它应该是:

GetResult(strResult, "result")

于 2012-05-08T15:05:03.540 回答