其他分享
首页 > 其他分享> > soapUI (或curl等工具) 测试 webservice,参数带有 xml 的处理

soapUI (或curl等工具) 测试 webservice,参数带有 xml 的处理

作者:互联网

原文链接:https://blog.csdn.net/u011768325/article/details/50067263

soapUI是我们常用的一种测试webservice的工具。

如果我们的参数是为xml

如下:

<root>
	<id>1</id>
	<name>Mike</name>
</root>

的话,soapUI解析的时会将<root>类型的以为是节点,导致参数无法正确传递

解决方法:

在xml外包装一层 <![CDATA[      xml内容...    ]]>

如上述的xml则为

<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<root>
	<id>1</id>
	<name>Mike</name>
</root>]]>

同理,curl 中参数如果带有xml,也需要加上转义,调用webservice的例子,如下:

curl -H 'Content-Type:text/xml;charset=utf-8' -d '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pub="http://publish.service.boco.com/"><soapenv:Header/><soapenv:Body><pub:call><reqData><![CDATA[<wsParam><code>WS_WIRELESS_CODE</code></wsParam>]]></reqData></pub:call></soapenv:Body></soapenv:Envelope>' http://restar.gmcc.net:9044/ws/common?wsdl

标签:xml,Mike,webservice,参数,soapUI,curl
来源: https://blog.csdn.net/londa/article/details/97932828