On Friday 16 July 2010 4:18:52 pm am am wrote: > Hi, > > I need to know the following: is Dispatch<T>.invoke() method or > invokeAsync(T msg) using SAAJ underneath for the connection and the > marshal/demarshalling of the message?
It's never used for the connection stuff. The CXF runtime always handles that itself. For marshalling/unmarshalling: 1) In MESSAGE mode, I believe it is used. 2) In PAYLOAD mode, it's not used unless you are doing something that would require it. (such as a JAX-WS SOAPHandler or using WS-Security or similar) Dan > In general what is the relation of jax ws with SAAJ? > > > Thanks -- Daniel Kulp [email protected] http://dankulp.com/blog
