On Friday 21 November 2008 7:34:56 am ysahuly wrote:
> Hi,
>
> In CXF, I need to add the SOAP header in the WebserviceContext on server as
> per the option 4 provided in the Apache CXF
> FAQ(http://cxf.apache.org/faq.html).If anybody have idea about this Plz
> lemme know...
It's really exactly like the client side....
List<Header> list = context.get(Header.HEADER_LIST);
if (list == null) {
list = new ArrayList<Header>();
context.put(Header.HEADER_LIST, list);
}
Header header = new Header(qname, dom);
list.add(header);
--
Daniel Kulp
[EMAIL PROTECTED]
http://dankulp.com/blog