Why SAAJOutInterceptor not added to WSS4JOutInterceptor in 2.0.6?

2008-05-06 Thread Glen Mazza
Anyone know why WSSJOutInterceptor doesn't have the SAAJOutInterceptor automatically added in 2.0.6 like it is already in 2.1? I would like to remove the instruction in our WS-Security guide which says it must manually be added[1], since that is no longer the case at least with 2.1. Thanks, Glen

Re: Writing my own transport

2008-05-06 Thread Daniel Kulp
Depending on what you need to do, you may not need all of the below classes. For example, the CachedXXXputStream stuff may not be necessary depending on your protocol and current stream implementations. Actually, in most cases, you DON'T want to use that. Instead, use a subclass of t

Re: Proposal: Interceptor Listeners

2008-05-06 Thread Daniel Kulp
I'm not quite as against the idea as Glen is. I'm more "indifferent" as long as performance is completely not impacted. Also, it's more of an InterceptorChainListener as that would be the one calling the methods and the listener is really listening to what the PhaseInterceptorChain is do

Re: Proposal: Interceptor Listeners

2008-05-06 Thread Glen Mazza
-0.5, I guess, but no veto. Interceptors seem to function similarly to listeners, they are called when something happens, so I'm unsure of the need for a separate listener construct. There was a change a couple of months back allowing for duplicate interceptors (multiple interceptors of the same

Re: Writing my own transport

2008-05-06 Thread Freeman Fang
Hi Marcel, Assume the transport you want to implement is AAA, basically you need several class as below AAAConduit extends AbstractConduit, kinda like your transport client AAADestination extends AbstractDestination, your transport destination AAAConduitOutputStream extends CachedOutputStrea

Writing my own transport

2008-05-06 Thread Heemskerk, Marcel (M.)
I have a service 'service1' listening to HTTP. I would like be able to make a new transport for this service, so i can use a propietary transport protocol to receive the InputStream and send the OutputStream to. The received message is 100% SOAP, so i just want to send it into the CXF marshalling

Proposal: Interceptor Listeners

2008-05-06 Thread Bharath Ganesh
I was thinking of a way to register listeners with CXF interceptors. The use case I ran into was: I wanted some timing diagnostics to determine the time certain interceptors were taking to process the message. Ideally I would register a TimingListener with such interceptors. Another use case can be

Writing my own transport

2008-05-06 Thread Marcel Heemskerk
I have a service 'service1' listening to HTTP. I would like be able to make a new transport for this service, so i can use a propietary transport protocol to receive the InputStream and send the OutputStream to. The received message is SOAP, so i just want to send it into the CXF marshalling layer