我需要测试一个SOAP web服务,看看它会给我返回什么,我想使用PAW(os x app),但找不到任何关于如何构建SOAP调用的文档
更新:访问Paw的文档,了解如何使用Paw 发送SOAP请求
遗憾的是,我们本机不支持SOAP调用。Paw试图更接近REST体系结构,但作为一个HTTP客户端,您可以自己构建SOAP信封:
<soap:Envelope xmlns:soap="http://www.w3.org/2001/12/soap-envelope" soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Header>
<m:Trans xmlns:m="http://www.w3schools.com/transaction/"
soap:mustUnderstand="1">234
</m:Trans>
</soap:Header>
<soap:Body>
...
</soap:Body>
</soap:Envelope>
下面是一个SOAP请求示例:https://paw.pt/aWeCZk9J