0

我正在使用soapUI 来测试我的Web 服务API,但是一些字段/参数是一个对象而不是标准数据类型,例如

<soapenv:Envelope xml>
   <soapenv:Header/>
   <soapenv:Body>
      <api:test>
         <api:giveMeSomeText>BEEF1234567890</api:giveMeSomeText>
         <api:giveMeJavaURLObject>??????</api:giveMeJavaURLObject>
      </api:test>
   </soapenv:Body>
</soapenv:Envelope>

如何通过soapUI将参数作为对象分配给Web服务API?我可以使用 CDATA 字符串来捆绑我的对象,怎么做?

<![CDATA[??????]]>

在此处输入图像描述

4

1 回答 1

0

您可以使用 CDATA,请参阅以下示例

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sam="http://www.example.org/sample/">
   <soapenv:Header/>
   <soapenv:Body>
      <sam:searchResponse>
         <sam:searchResponse>
            <item><id>1234</id><description><![CDATA[<item><width>123</width><height>345</height>
<length>098</length><isle>A34</isle></item>]]></description><price>123</price>
            </item>
         </sam:searchResponse>
      </sam:searchResponse>
   </soapenv:Body>
</soapenv:Envelope>
于 2012-11-07T15:04:04.187 回答