PostMan测试WebService

前端之家收集整理的这篇文章主要介绍了PostMan测试WebService前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
  1. 选用POST方法
  2. URL填写服务地址
  3. 参数选raw,XML(text/xml)
  4. 编写soapenv:Body部分,如:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pm="http://www.getpostman.com/">
    <soapenv:Header></soapenv:Header>
        <soapenv:Body>
            <pm:sayHello>
                <name>moxun</name>
            </pm:sayHello>
        </soapenv:Body>
    </soapenv:Envelope>

     

​​​​​​​

猜你在找的WebService相关文章