找回肥皂的身体

时间:2013-10-10 23:23:44

标签: java web-services soap

我有这样的肥皂请求消息

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tes="http://testwork/">
   <soapenv:Header/>
   <soapenv:Body>
      <tes:sayHelloWorldFrom>        
         <arg0>value</arg0>
      </tes:sayHelloWorldFrom>
   </soapenv:Body>
</soapenv:Envelope>

我想从此消息中检索正文,因此我想

<soapenv:Body>
          <tes:sayHelloWorldFrom>        
             <arg0>value</arg0>
          </tes:sayHelloWorldFrom>
       </soapenv:Body>

我该如何检索它? Thanx提前

1 个答案:

答案 0 :(得分:0)

您可以使用Java的XML XPath API解析SOAP响应。