Re: [Architecture] [Dev] C5 - Enabling SOAP support for BPEL with Apache CXF integration

2016-03-19 Thread Amal Gunatilake
Hi KasunG, Following are the extension points used in Apache CXF. - To intercept the request message we have extended the org.apache.cxf.phase.AbstractPhaseInterceptor class under RECEIVE phase and have overridden the handleMessage method. - To intercept the Response message we have

Re: [Architecture] [Dev] C5 - Enabling SOAP support for BPEL with Apache CXF integration

2016-03-19 Thread Nandika Jayawardana
This model is based on the original axis2 integration layer we had for ODE. Basically, we take the existing wsdl from the process, pass it and expose it as a service on the web service framework (CXF ). When a request hits the service, we get ode invoked via the message interceptor. In this

Re: [Architecture] [Dev] C5 - Enabling SOAP support for BPEL with Apache CXF integration

2016-03-15 Thread KasunG Gajasinghe
Hi Amal, Can you show the extension points we use inside the Apache CXF (Bus) box? In addition to the invocation flow, can you also show how you handle the service deployment? Thanks, KasunG On Tue, Mar 15, 2016 at 11:03 AM, Amal Gunatilake wrote: > Hi All, > > Following is