On Tuesday 05 October 2010 2:00:20 pm Peter Mihalik wrote: > Hi, > > how can i add cxf features and/or interceptors to a dynamic jax-ws > dispatcher client?
Interceptors yes. Features likely not as the features are applied when created. Of course, you can just call: new MyFeature(..).initialize(client, bus); to apply a feature once you have the client. The Client interface extends InterceptorProvider so modifying the interceptor chains it provides is trivial. client.getInInterceptors().add(new LoggingInInterceptor()); ... Dan > tnx > -- > > Peter -- Daniel Kulp [email protected] http://dankulp.com/blog
