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

git commit: Fixing caching file location in Tomcat 8

Repository: cxf
Updated Branches:
  refs/heads/master 691073067 -> 0eab963da


Fixing caching file location in Tomcat 8


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

Branch: refs/heads/master
Commit: 0eab963da373bfd4c71530e917800ac6f2b95eb8
Parents: 6910730
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Mon Oct 6 12:02:07 2014 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Mon Oct 6 12:02:25 2014 +0100

----------------------------------------------------------------------
 .../src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/0eab963d/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java
----------------------------------------------------------------------
diff --git a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java
index 7ed5886..2597cf7 100644
--- a/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java
+++ b/rt/ws/security/src/main/java/org/apache/cxf/ws/security/wss4j/WSS4JUtils.java
@@ -120,7 +120,7 @@ public final class WSS4JUtils {
     private static URL getConfigFileURL(Message message) {
         Object o = message.getContextualProperty(SecurityConstants.CACHE_CONFIG_FILE);
         if (o == null) {
-            o = "cxf-ehcache.xml";
+            o = "/cxf-ehcache.xml";
         }
         
         if (o instanceof String) {