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 2015/08/04 12:46:53 UTC

cxf-fediz git commit: CXF update

Repository: cxf-fediz
Updated Branches:
  refs/heads/master 3e2f6642b -> c03dba697


CXF update


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

Branch: refs/heads/master
Commit: c03dba6978431d23948174758b5805acc30a224c
Parents: 3e2f664
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Tue Aug 4 11:46:35 2015 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Tue Aug 4 11:46:35 2015 +0100

----------------------------------------------------------------------
 .../apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java | 4 ++--
 pom.xml                                                          | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/c03dba69/plugins/core/src/main/java/org/apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java
----------------------------------------------------------------------
diff --git a/plugins/core/src/main/java/org/apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java b/plugins/core/src/main/java/org/apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java
index fd9cd2f..a5757ef 100644
--- a/plugins/core/src/main/java/org/apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java
+++ b/plugins/core/src/main/java/org/apache/cxf/fediz/core/saml/FedizSignatureTrustValidator.java
@@ -151,11 +151,11 @@ public class FedizSignatureTrustValidator implements Validator {
             }
         } catch (CertificateExpiredException e) {
             throw new WSSecurityException(
-                WSSecurityException.ErrorCode.FAILED_CHECK, "invalidCert", e
+                WSSecurityException.ErrorCode.FAILED_CHECK, e, "invalidCert"
             );
         } catch (CertificateNotYetValidException e) {
             throw new WSSecurityException(
-                WSSecurityException.ErrorCode.FAILED_CHECK, "invalidCert", e
+                WSSecurityException.ErrorCode.FAILED_CHECK, e, "invalidCert"
             );
         }
     }

http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/c03dba69/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 267674e..c200918 100644
--- a/pom.xml
+++ b/pom.xml
@@ -39,7 +39,7 @@
         <apacheds.version>2.0.0-M20</apacheds.version>
         <commons.lang.version>3.4</commons.lang.version>
         <commons.logging.version>1.2</commons.logging.version>
-        <cxf.version>3.1.1</cxf.version>
+        <cxf.version>3.1.2</cxf.version>
         <cxf.build-utils.version>3.1.0</cxf.build-utils.version>
         <easymock.version>3.3</easymock.version>
         <ecj.version>4.4.2</ecj.version>
@@ -62,7 +62,7 @@
         <spring.version>4.1.6.RELEASE</spring.version>
         <spring.security.version>3.1.4.RELEASE</spring.security.version>
         <tomcat.version>7.0.54</tomcat.version>
-        <wss4j.version>2.1.0</wss4j.version>
+        <wss4j.version>2.1.2</wss4j.version>
         <xalan.version>2.7.2</xalan.version>
 
         <tomcat.url>http://localhost:8080/manager/text</tomcat.url>