You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by jimmy coyne <ji...@engitech.ie> on 2002/12/09 11:20:38 UTC

Retrieving the parameters from MessageContext

Hi all
Im developing a custom handler and need to retrieving the parameters passed
in the soap call from the MessageContext .Is there a standard way of doing
this?
For example , getting the values xxx and yyy from the body of the envelope
below


<soapenv:Body>
  <ns1:login
soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:ns1="Login">
   <arg0 xsi:type="xsd:string">xxx</arg0>
   <arg1 xsi:type="xsd:string">yyy</arg1>
  </ns1:login>
 </soapenv:Body>

thanks
jim