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:33:37 UTC

svn commit: r1520094 - /cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Author: dkulp
Date: Wed Sep  4 18:33:37 2013
New Revision: 1520094

URL: http://svn.apache.org/r1520094
Log:
[CXF-5225] Also add the request context information (like ENDPOINT_ADDRESS)

Modified:
    cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java

Modified: cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java
URL: http://svn.apache.org/viewvc/cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java?rev=1520094&r1=1520093&r2=1520094&view=diff
==============================================================================
--- cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java (original)
+++ cxf/trunk/core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java Wed Sep  4 18:33:37 2013
@@ -814,6 +814,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);
     }