On Friday 21 November 2008 6:19:59 am Andrew123 wrote: > Hi all, > > I want to move my application from xfire to CXF. But I have few questions. > > 1. Before calling web service I set some parameters to request header. I > use handlers in xfire for this purposes. As I know, in CXF handlers were > changed to interceptors. But I can't find, how add headers in interceptor. > Can I set some value to header in inteceptor?
Yes. If the Message is a "SoapMessage", then just call message.getHeaders() and add them to the returned list. -- Daniel Kulp [EMAIL PROTECTED] http://dankulp.com/blog
