Skip to content

Instantly share code, notes, and snippets.

@qetr1ck-op
Last active November 1, 2015 17:17
Show Gist options
  • Save qetr1ck-op/36b64c830a6aa4076052 to your computer and use it in GitHub Desktop.
Save qetr1ck-op/36b64c830a6aa4076052 to your computer and use it in GitHub Desktop.
<?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