You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2013/09/04 20:40:07 UTC

svn commit: r1520097 - /cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Author: dkulp
Date: Wed Sep  4 18:40:06 2013
New Revision: 1520097

URL: http://svn.apache.org/r1520097
Log:
Merged revisions 1520094 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1520094 | dkulp | 2013-09-04 14:33:37 -0400 (Wed, 04 Sep 2013) | 2 lines

  [CXF-5225] Also add the request context information (like ENDPOINT_ADDRESS)

........

Modified:
    cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Modified: cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=1520097&r1=1520096&r2=1520097&view=diff
==============================================================================
--- cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original)
+++ cxf/branches/2.7.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Wed Sep  4 18:40:06 2013
@@ -877,6 +877,7 @@ public class ClientImpl
         Message message = new MessageImpl();
         Exchange exchange = new ExchangeImpl();
         message.setExchange(exchange);
+        message.putAll(getRequestContext());
         setExchangeProperties(exchange, getEndpoint(), null);
         return getConduitSelector().selectConduit(message);
     }