Hi there all,

I have a SOAP message to invoke a web service e.g.

<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
 <soapenv:Body>
  <ns1:add
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";
xmlns:ns1="http://example.com/Operation";>
   <ns1:arg0 xsi:type="xsd:int">1</ns1:arg0>
   <ns1:arg1 xsi:type="xsd:int">2</ns1:arg1>
  </ns1:add>
 </soapenv:Body>
</soapenv:Envelope>

regards

Reply via email to