记一下postman 请求webservice 接口
Headers
Content-Type text/xml
Accept-Charset charset=utf-8
postman 选body----->ram
<?xml version="1.0" encoding="utf-8"?>
<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>
<方法名 xmlns="此处是 Target namespace">
<参数>如果是base64,直接放这里就行</参数>
</方法名>
</soap:Body>
</soap:Envelope>
如果要传xml
<?xml version="1.0" encoding="utf-8"?>
<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>
<方法名 xmlns="此处是 Target namespace">
<参数><![CDATA[这里是xml不能有空格或换行]]></参数>
</方法名>
</soap:Body>
</soap:Envelope>