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
上一篇:cfround586a\b\c


下一篇:AI大神如何用区块链解决模型训练痛点, AI+区块链的正确玩法原来是这样…… | 人物志