hi,
thanks for ur reply...I understand the below part but where i need to
inject the below code...i.e from where i will need to get the context...i am
new to CXF
dkulp wrote:
>
> 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
>
>
--
View this message in context:
http://www.nabble.com/How-to-add-Soap-Header-in-CXF-tp20620246p20654621.html
Sent from the cxf-user mailing list archive at Nabble.com.