2015-11-05 62 views

回答

5

更新:訪問爪子的文檔閱讀可悲的是,我們不支持SOAP如何Send SOAP requests with 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

使用PAW
+1

感謝,我剛開始 – al404IT