You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by em...@apache.org on 2015/02/06 10:24:41 UTC

cxf git commit: [CXF-6241]:Fix WS-RM doesn't work with WS-Security configured with @EndpointProperties

Repository: cxf
Updated Branches:
  refs/heads/master 28e185b27 -> 3780c7294


[CXF-6241]:Fix WS-RM doesn't work with WS-Security configured with @EndpointProperties


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/3780c729
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/3780c729
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/3780c729

Branch: refs/heads/master
Commit: 3780c72943ed8d9d6d78d1797e24bbc1c3375a7a
Parents: 28e185b
Author: Jim Ma <em...@apache.org>
Authored: Fri Feb 6 17:16:23 2015 +0800
Committer: Jim Ma <em...@apache.org>
Committed: Fri Feb 6 17:16:39 2015 +0800

----------------------------------------------------------------------
 rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/3780c729/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java
----------------------------------------------------------------------
diff --git a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java
index 2ef43c7..3146bac 100644
--- a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java
+++ b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/RMEndpoint.java
@@ -454,7 +454,13 @@ public class RMEndpoint {
         ei.setProperty(SecurityConstants.TOKEN_STORE_CACHE_INSTANCE, tokenStore);
         
         Endpoint endpoint = new WrappedEndpoint(applicationEndpoint, ei, service);
-        
+        if (applicationEndpoint.getEndpointInfo() != null
+            && applicationEndpoint.getEndpointInfo().getProperties() != null) {
+            for (String key : applicationEndpoint.getEndpointInfo().getProperties().keySet()) {
+                endpoint.getEndpointInfo()
+                    .setProperty(key, applicationEndpoint.getEndpointInfo().getProperty(key));
+            }
+        }
         service.setEndpoint(endpoint);
         endpoints.put(protocol, endpoint);
     }