I meant Axis Handler construct, enabling the developer to intercept soap messages before and after being received / sent by the axis engine. Through that construct you have access to the plain xml produced by axis and received by axis.
For that see the ws.apache.org/axis web page, especially:
http://ws.apache.org/axis/java/architecture-guide.html#HandlersAndChains
http://ws.apache.org/axis/java/user-guide.html#CustomDeploymentIntroducingWSDD

If you are familiar with Servlets, this construct is comparable to Filters.

I hope that helped,
Simon


Noé Amorim wrote:
could you be more specific.
is this what you mean: javax.xml.rpc.handler ?

thanks.




On Thu, Feb 28, 2008 at 3:50 PM, Simon Steinacker
<[EMAIL PROTECTED]> wrote:
I would say you should use the Handler / Module construct of Axis / Axis2.

 regards,
 Simon




 Noé Amorim wrote:
 > Hello all.
 > I've trying to get the message content before the call is sent, like this:
 >
 > ServicesBindingStub sservice = new ServicesBindingStub(new
 > java.net.URL(location), new org.apache.axis.client.Service());
 >
 > sservice.setUsername(username);
 > sservice.setPassword(password);
 >
 > org.apache.axis.client.Call _call = sservice._createCall();
 > javax.xml.soap.SOAPMessage _message = _call.getMessageContext().getMessage();
 >
 > System.out.println(_message.getSOAPBody());
 >
 > but i can't get nothing print, i can print the response BODY although.
 >
 > Another thing, i'm trying read more about securing webservices, i
 > started by read this
 > http://www-128.ibm.com/developerworks/webservices/library/ws-sec1.html,
 > but it seems a bit outdated allready, any other articles i could watch
 > out ?
 >
 > Thanks.
 >
 > ---------------------------------------------------------------------
 > To unsubscribe, e-mail: [EMAIL PROTECTED]
 > For additional commands, e-mail: [EMAIL PROTECTED]
 >
 >


 ---------------------------------------------------------------------
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to