Hi,
A web application that I am developing uses CXF's dynamic client feature ( http://cxf.apache.org/docs/dynamic-clients.html). I hold a single reference to the client object (in the interest of memory consumption by the generated stub classes) in my app. I initially used interceptors to add custom HTTP headers on the request. The issue that I am facing now is that I need to send out different HTTP header values (available in the HTTP session object) based on the user submitting the request. With a single client object, I do not see a way of passing dynamic values for the headers. is there any way around this? Thanks, Vidya
