Last active
November 1, 2015 17:17
-
-
Save qetr1ck-op/36b64c830a6aa4076052 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<soapenv:Envelope | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" | |
xmlns:urn="urn:WebservicesName"> <!-- service name --> | |
<soap:Header> | |
<m:Trans xmlns:m="http://schemas.xmlsoap.org/soap/encoding/">Header</m:Trans> | |
</soap:Header> | |
<soapenv:Body> | |
<!-- method name --> | |
<urn:ProductService.getProductByHash | |
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> | |
<!-- request to server --> | |
<return xsi:type="getProductByHash "> | |
<product_hash xsi:type="xsd:string">product hash here!</product_hash> | |
</return> | |
</urn:ProductService.getProductByHash> | |
</soapenv:Body> | |
</soapenv:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment