On Friday 08 June 2007 07:22, Guy Pardon wrote: > Do JAXWS handler threads run in the same thread as the endpoint below > them? This is not required by the spec, but necessary for mapping WS- > AT to JTA.
In the "normal" case, yes. The entire interceptor chain which includes the handlers and the final invokation to the endpoint run on a single thread. However, an interceptor could "pause" the chain and have it resume on a different thread. That would be a highly specialized case though rooted more in theory. I'm not 100% sure it even works right now, especially for HTTP, maybe for JMS. -- J. Daniel Kulp Principal Engineer IONA P: 781-902-8727 C: 508-380-7194 [EMAIL PROTECTED] http://www.dankulp.com/blog
