On Sunday, June 26, 2011 7:21:47 PM Sumit Pathak wrote: > I need to confirm on one thing here, Can Dan or any other cxf expert help > me, please:- > a) Curerntly while sending message to end point for secure token, i need to > add header explicitly > can anybody point me where cxf does add headers in outgoing message, so that > i can take a look that why its not happening in my case.
SOAP header or HTTP header? For soap header, it would NORMALLY be SoapOutInterceptor where it grabs the various headers from the message and writes them out. That said, things like WS-Security and such run after this and thus headers can sometime get manipulated or changed after this point. For HTTP, there is a "Headers" utility class in org.apache.cxf.transport.http which handles much of the mappings. -- Daniel Kulp [email protected] http://dankulp.com/blog Talend - http://www.talend.com
