I believe JAX-WS handlers (analogous to interceptors but also compatible with Metro) along with SAAJ are good for working with SOAP Headers. There is a MessageContext within the JAX-WS handlers that will allow you to pass off data to the service implementation bean that ultimately handles the SOAP request. I have not done this before, but here is information I collected on this topic:
http://www.jroller.com/gmazza/date/20080107 http://www.jroller.com/gmazza/date/20080204 HTH, Glen Gerson Galang wrote: > > From what I've read, the invoke() method in the Handler has been replaced > by > the handleMessage() method of the Interceptor. The problem I have is how I > could get hold of the header Element. Can you tell me the CXF equivalent > of > this XFire code? > > Element header = context.getInMessage().getHeader(); > -- View this message in context: http://www.nabble.com/xfire-to-cxf-migration-tp18706317p18716820.html Sent from the cxf-user mailing list archive at Nabble.com.
