以下のような応答を返す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/sumption-soap-web-services-from-vbscriptの例に従って、vbスクリプトを使用してSOAPを呼び出しています。このxml全体をstrSoapReqオブジェクトで取得しますが、「ALREADYREGISTERED」の結果のみをポップアップできるように解析する方法がわかりません。