使用postman调用webservice接口


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"?>
: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">
:Body>
    ://tempuri.org/">
      >psadmin>
      >00000>
    >
:Body>
:Envelope>

如图:
使用postman调用webservice接口_第1张图片

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


你可能感兴趣的:(Tool)