在SOAP-UI中,我正在向Web服务发出这样的请求:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xxx="http://xxx.call/">
   <soapenv:Header/>
   <soapenv:Body>
      <cotf:call_XXX>
         <!--Optional:-->
         <arg0>
            <!--Optional:-->
            <parameter1>some text</parameter1>
            <!--Optional:-->
            <parameter2>XML string</parameter1>
         </arg0>
      </cotf:call_XXX>
   </soapenv:Body>
</soapenv:Envelope>

我想知道的是如何在参数2上传递XML字符串,因为如果我直接放置XML字符串,它将假定XML字符串节点为请求参数...。

谢谢

最佳答案

编码所需的XML实体或使用CDATA。

<arg0>
    <!--Optional:-->
    <parameter1>&lt;test>like this&lt;/test></parameter1>
    <!--Optional:-->
    <parameter2><![CDATA[<test>or like this</test>]]></parameter2>
 </arg0>

关于xml - SOAP-UI-如何在参数内部传递xml,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5715404/

10-12 14:02