Re: Axis2 Writing Custom Phase Handlers

2008-01-12 Thread Deepak Vishwakarma
Using the module approach will my handler receive the SOAP request for any web service deployed under Websphere? If the answer is yes then i can go with the module approach, but would need help implementing the module with respect to Websphere. Michele Mazzucco <[EMAIL PROTECTED]> wrote: On 11

Re: Axis2 Writing Custom Phase Handlers

2008-01-11 Thread Michele Mazzucco
On 11 Jan 2008, at 04:13, Deepak Vishwakarma wrote: So, does this means that i have to programmatically register the handler in Websphere and can't use the Axis standard way of configuring it in the axis2.xml configuration file. Yes, you can. However in your first email you said you "don't

Re: Axis2 Writing Custom Phase Handlers

2008-01-10 Thread Deepak Vishwakarma
So, does this means that i have to programmatically register the handler in Websphere and can't use the Axis standard way of configuring it in the axis2.xml configuration file. I will try to find out if websphere provides some native api's to get the axis configuration at runtime. Thanks for y

Re: Axis2 Writing Custom Phase Handlers

2008-01-10 Thread Martin Gainty
OutFaultFlow HTH/ M-- - Original Message - From: Deepak Vishwakarma To: [EMAIL PROTECTED] ; axis-user@ws.apache.org Sent: Thursday, January 10, 2008 7:53 AM Subject: Axis2 Writing Custom Phase Handlers Hi, I am using IBM Websphere Application Server and Web Service Feature Pack

Re: Axis2 Writing Custom Phase Handlers

2008-01-10 Thread Michele Mazzucco
Deepak, if you can get a reference to the configuration context you can do something like this: AxisService service = Utils.createSimpleService(new QName("EchoXml"), new RawXMLINOutMessageReceiver(), EchoXML.class.getName(), ne

Axis2 Writing Custom Phase Handlers

2008-01-10 Thread Deepak Vishwakarma
Hi, I am using IBM Websphere Application Server and Web Service Feature Pack version 6.1. I want to write a custom handler which I have to inject it in Axis2 Soap Engine Phases. I could get some material but they were not helpful enough since i don't want to use the module approach, i just ne