On Friday 28 March 2008, Daniel Kulp wrote:
>
> Hmm... not sure what phase you get if you don't specify one. That might
> be why it's not working.
>
> I would suggest doing:
>
> public static class MyInterceptor
> extends AbstractPhaseInterceptor<Message> {
>
> public MyInterceptor() {
> super(Phase.SETUP);
> }
>
> public void handleMessage(Message message) throws Fault {
> logger.info("Hi there");
> message.put(Message.MAINTAIN_SESSION, true);
> }
> }
>
Hi Dan,
This works beautifully. Thanks a lot. I can now get rid of
the JaxWS requirement client side.
Thanks again.
.bill