use fiddler to create soap request

0. Tools > Fiddler options > https tab > check Decrypt HTTPS traffic

1. Request builder > POST xxx/service

2. Request Headers 

 

Host: xxx:12001
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: "http://xxx:12001/xxx/service"
Content-Length: 352

 

3. Request Body

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:impl="http://impl.webservice.xxx.com/">
<soapenv:Header/>
<soapenv:Body>
<impl:foo>
<arg0>12345</arg0>
</impl:foo>
</soapenv:Body>
</soapenv:Envelope>

 

4Execute!

posted on 2017-09-07 15:35  白衣胜雪  阅读(170)  评论(0编辑  收藏  举报