You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by 34...@niit.edu.pk on 2005/06/12 21:14:31 UTC

SOAP parser

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