See this:

public class JaxWsClientProxy extends org.apache.cxf.frontend.ClientProxy
implements
    InvocationHandler, BindingProvider {

    private static final Logger LOG =
LogUtils.getL7dLogger(JaxWsClientProxy.class);

    protected Map<String, Object> requestContext = new
ConcurrentHashMap<String, Object>();

    protected ThreadLocal <Map<String, Object>> responseContext =
            new ThreadLocal<Map<String, Object>>();


Anybody can tell me why responseContext  is threadlocal but requestContext 
is not? That means BindingProvider  is not thread-safe!

Is it a bug?
-- 
View this message in context: 
http://www.nabble.com/Query-About-Request-Context-tp15282233p15282508.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to