Communication between the client and web service is via SOAP protocol. The SOAP requests and responses are shown for each method provided by the web service.
Example of a SOAP Request
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<SOAP-ENV:Body>
<Execute xmlns="http://iveri.com/">
<validateRequest>true</validateRequest>
<protocol>V_XML</protocol>
<protocolVersion>2.0</protocolVersion>
<request>.........</request>
</Execute>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Example of a SOAP Response
<soap:Envelope xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body xmlns="http://schemas.xmlsoap.org/soap/envelope/">
<ExecuteResponse>
<ExecuteResult>.......</ExecuteResult>
</ExecuteResponse>
</soap:Body>
</soap:Envelope>