Post方法发送url:

http://www.oorsprong.org/websamples.countryinfo/countryinfoservice.wso?WSDL

header添加键值对:

Content-Type
application/x-www-form-urlencoded

如果报错:服务器无法为请求提供服务,因为不支持该媒体类型。
试试 ​​​text/xml; charset=UTF-8​

body内容为:

<Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<Body>
<CountryFlag xmlns="http://www.oorsprong.org/websamples.countryinfo">
<sCountryISOCode>CN</sCountryISOCode>
</CountryFlag>
</Body>
</Envelope>

返回中的http就是结果地址:

postman发送webService请求_服务器