4

对我的 SOAP 请求的响应是:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns2:deliveries nextSequence="492hi" xmlns:ns2="http://blahblahblah"/>
   </soap:Body>
</soap:Envelope>

如何使用soapui 属性转移获得nextSequence 值?我试过这个,但我得到了整个回应:

declare namespace ns2='http://blahblahblah';
//ns2:deliveries
4

2 回答 2

3

请试试,

     declare namespace ns2='http://blahblahblah';
     //ns2:deliveries[1]/@nextSequence
于 2012-10-30T11:24:14.900 回答
0

使用 firstObject 工具生成 Xpath 或者您可以使用 //ns2:deliveries[@nextSequence] ..它将打印交付节点内的所有 nextSequences。通过:http://www.w3schools.com/xpath/xpath_syntax.asp

于 2012-10-29T09:14:00.083 回答