SOAP UI
SOAP UI is the Most Advanced REST & SOAP Testing Tool in the World.
快速开始
下载
(本次测试环境为 windows)
直接 下载 open-source 版本。
下载完成后直接双击安装。
创建项目
-
根据自己的项目自定义一个名称
-
指定 WSDL,比如;
http://192.168.0.62:8081/my/service/xxxFacade?wsdl
发起请求
直接写好上述请求,点击运行(左上角绿色三角)。
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ser="http://service.facade.common.scp.huifu.com">
<soapenv:Header/>
<soapenv:Body>
<ser:scpRequestEvent>
<ser:in0>
{这里写你的请求 json}
</ser:in0>
</ser:scpRequestEvent>
</soapenv:Body>
</soapenv:Envelope>
- 获取结果如下:
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<ns1:scpRequestEventResponse xmlns:ns1="http://service.facade.common.scp.huifu.com">
<ns1:out>
{这里是你的结果}
</ns1:out>
</ns1:scpRequestEventResponse>
</soap:Body>
</soap:Envelope>
确实比较简单。其实就是 webservice 层的一种封装。
拓展阅读
参考资料
https://baijiahao.baidu.com/s?id=1578185071928415066&wfr=spider&for=pc