欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用postman调用webservice接口

程序员文章站 2022-03-26 16:49:17
...

PostMan调用webservice接口,采用post方式,参数使用xml格式。

#实例

1、webservice地址:http://192.168.2.13/psum/UserModuleService.asmx;
2、上传方式选择POST方式;
3、header中设置:Content-Type:text/xml;charset=utf-8
4、参数:(xml格式)

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
    <LoginByNameAndPwd xmlns="http://tempuri.org/">
      <username>psadmin</username>
      <password>00000</password>
    </LoginByNameAndPwd>
</soap:Body>
</soap:Envelope>

如图:
使用postman调用webservice接口

▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
博客园同步更新地址:https://www.cnblogs.com/willingtolove/p/13121447.html
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲


相关标签: Tool