Paw os x app 构建 soap call
Paw os x app build a soap call
我需要测试 SOAP Web 服务以了解它对我有什么用 returns,我想使用 PAW ( os x app ) 但找不到任何关于如何使用的文档建立肥皂电话
更新:访问 Paw 的文档以阅读如何Send SOAP requests with Paw
遗憾的是,我们本机不支持 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
我需要测试 SOAP Web 服务以了解它对我有什么用 returns,我想使用 PAW ( os x app ) 但找不到任何关于如何使用的文档建立肥皂电话
更新:访问 Paw 的文档以阅读如何Send SOAP requests with Paw
遗憾的是,我们本机不支持 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