Re: Configuring Interceptors

2007-10-16 Thread Daniel Kulp
You would probably need to write your own interceptor that would determine the appropriate configuration and then adds that to the chain. Basically, write an interceptor that does: public void handleMessage(Message message) { SOAPMessage msg = message.getContent(SOAPMessage.class);

Re: Configuring Interceptors

2007-10-16 Thread Willem Jiang
Hi CXF provides a flexible configuration of interceptor. You can configure the interceptor in Bus level or in Endpoint level. For you case, I think you can define the WSS4J interceptor in your Endpoint B, and add the SAAJ*Interceptor in the bus. In this way, the EndpointA will not check the

Re: Configuring interceptors using annotations

2007-07-26 Thread Jeff.Yu
/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like the org.codehaus.xfire.annotations.InHandlers

Re: Configuring interceptors using annotations

2007-07-26 Thread Jeff.Yu
annotations in CXF that allow to specify inbound/outbound fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like

Re: Configuring interceptors using annotations

2007-07-25 Thread Jeff.Yu
. There are no custom annotations in CXF that allow to specify inbound/outbound fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like

Re: Configuring interceptors using annotations

2007-07-25 Thread Freeman Fang
wrote: Is there support for configuring interceptors using annotations? I'm looking for something like the org.codehaus.xfire.annotations.InHandlers and org.codehaus.xfire.annotations.OutHandlers class where were present in XFire. I'm thinking of writing similar

Re: Configuring interceptors using annotations

2007-07-25 Thread Jeff.Yu
fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like the org.codehaus.xfire.annotations.InHandlers and org.codehaus.xfire.annotations.OutHandlers

Re: Configuring interceptors using annotations

2007-07-25 Thread Freeman Fang
. There are no custom annotations in CXF that allow to specify inbound/outbound fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like

Re: Configuring interceptors using annotations

2007-07-25 Thread Daniel Kulp
annotations in CXF that allow to specify inbound/outbound fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like

Configuring interceptors using annotations

2007-07-17 Thread Zarar Siddiqi
Is there support for configuring interceptors using annotations? I'm looking for something like the org.codehaus.xfire.annotations.InHandlers and org.codehaus.xfire.annotations.OutHandlers class where were present in XFire. I'm thinking of writing similar annotations and want to make sure

Re: Configuring interceptors using annotations

2007-07-17 Thread Dan Diephouse
for JAX-WS handlers. There are no custom annotations in CXF that allow to specify inbound/outbound fault/message interceptors (i.e. CXF handlers) .. Regards, Andrea. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like

Re: Configuring interceptors using annotations

2007-07-17 Thread Zarar Siddiqi
. Zarar Siddiqi wrote: Is there support for configuring interceptors using annotations? I'm looking for something like the org.codehaus.xfire.annotations.InHandlers and org.codehaus.xfire.annotations.OutHandlers class where were present in XFire. I'm thinking of writing similar annotations