2

我收到了一个 15 位数的用户 ID,并想修剪其最后 3 位数,然后发回给请求发件人。索取样品如下:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
   <env:Header/>
   <env:Body>
      <lookupSubscriberInfo xmlns="http://testID.com/V1_0">
         <callingParty>testParty</callingParty>
         <subscriberRequestList>
            <testId>888905425616681</opaqueId>
         </subscriberRequestList>
      </lookupSubscriberInfo>
   </env:Body>
</env:Envelope>

我已阅读此 http://www.soapui.org/Service-Mocking/creating-dynamic-mockservices.html 但无法弄清楚..

4

1 回答 1

3

另一方面,我无法通过 XPATH 做到这一点 XmlSlurper 已经工作了..

import groovy.util.XmlSlurper
def parsedContent = new XmlSlurper().parseText(mockRequest.requestContent)
context.MSISDN = parsedContent.Body.lookupSubscriberInfo.subscriberRequestList.opaqueId.toString().substring(3,15)

为了使用 MSISDN 值,你应该使用以下

${MSISDN}

于 2012-12-10T15:58:08.410 回答