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/09 19:23:14 UTC

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

Author: dkulp
Date: Mon Sep  9 17:23:14 2013
New Revision: 1521199

URL: http://svn.apache.org/r1521199
Log:
Merged revisions 1520097 via  git cherry-pick from
https://svn.apache.org/repos/asf/cxf/branches/2.7.x-fixes

........
  r1520097 | dkulp | 2013-09-04 14:40:06 -0400 (Wed, 04 Sep 2013) | 10 lines

  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.6.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Modified: cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=1521199&r1=1521198&r2=1521199&view=diff
==============================================================================
--- cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original)
+++ cxf/branches/2.6.x-fixes/api/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Mon Sep  9 17:23:14 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);
     }