Author: dkulp Date: Mon Oct 25 21:14:01 2010 New Revision: 1027272 URL: http://svn.apache.org/viewvc?rev=1027272&view=rev Log: Merged revisions 1027271 via svnmerge from https://svn.apache.org/repos/asf/cxf/branches/2.3.x-fixes
................ r1027271 | dkulp | 2010-10-25 17:10:44 -0400 (Mon, 25 Oct 2010) | 9 lines Merged revisions 1027269 via svnmerge from https://svn.apache.org/repos/asf/cxf/trunk ........ r1027269 | dkulp | 2010-10-25 17:07:59 -0400 (Mon, 25 Oct 2010) | 1 line [CXF-2992] More fixes for thread safety around the response context ........ ................ Modified: cxf/branches/2.2.x-fixes/ (props changed) cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Propchange: cxf/branches/2.2.x-fixes/ ('svn:mergeinfo' removed) Propchange: cxf/branches/2.2.x-fixes/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=1027272&r1=1027271&r2=1027272&view=diff ============================================================================== --- cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original) +++ cxf/branches/2.2.x-fixes/rt/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Mon Oct 25 21:14:01 2010 @@ -411,7 +411,7 @@ public class ClientImpl Endpoint endpoint = getEndpoint(); if (context == null) { context = new HashMap<String, Object>(); - Map<String, Object> resp = getResponseContext(); + Map<String, Object> resp = new HashMap<String, Object>(); resp.clear(); Map<String, Object> reqContext = new HashMap<String, Object>(getRequestContext()); context.put(RESPONSE_CONTEXT, resp);
