通过postman调用webservice接口服务
程序员文章站
2024-01-03 21:20:58
...
1.设置Headers
Content-Type:text/xml;charset=utf-8
2.Body界面选择raw ---->xml
2.1、getInfo 请求的方法名
2.2、xmlns 系统设置的targetNamespace
2.3、userCode 参数名称
2.4、002245 请求参数
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getInfo xmlns="http://localhost//services/AccountAuthorityService/">
<userCode>002245</userCode>
</getInfo>
</soap:Body>
</soap:Envelope>