You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2011/08/11 20:11:10 UTC

svn commit: r1156709 - in /webservices/wss4j/trunk: build.xml pom.xml src/main/java/org/apache/ws/security/message/token/BinarySecurity.java

Author: coheigea
Date: Thu Aug 11 18:11:10 2011
New Revision: 1156709

URL: http://svn.apache.org/viewvc?rev=1156709&view=rev
Log:
Upgrading to 1.6.3-SNAPSHOT + fixing a bug that results in a RTE due to a missing property on a certain Exception

Modified:
    webservices/wss4j/trunk/build.xml
    webservices/wss4j/trunk/pom.xml
    webservices/wss4j/trunk/src/main/java/org/apache/ws/security/message/token/BinarySecurity.java

Modified: webservices/wss4j/trunk/build.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/build.xml?rev=1156709&r1=1156708&r2=1156709&view=diff
==============================================================================
--- webservices/wss4j/trunk/build.xml (original)
+++ webservices/wss4j/trunk/build.xml Thu Aug 11 18:11:10 2011
@@ -27,7 +27,7 @@ Build Instructions:
 
         <property name='product.version.major' value='1'/>
         <property name='product.version.minor' value='6'/>
-        <property name='product.version.level' value='2'/>
+        <property name='product.version.level' value='3'/>
         <property name='product.version.qualifier' value='-SNAPSHOT'/>
         <property name='product.version' value='${product.version.major}.${product.version.minor}.${product.version.level}${product.version.qualifier}'/>
         <property name="year" value="2011"/>

Modified: webservices/wss4j/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/pom.xml?rev=1156709&r1=1156708&r2=1156709&view=diff
==============================================================================
--- webservices/wss4j/trunk/pom.xml (original)
+++ webservices/wss4j/trunk/pom.xml Thu Aug 11 18:11:10 2011
@@ -24,7 +24,7 @@
     <artifactId>wss4j</artifactId>
     <packaging>bundle</packaging>
     <name>WSS4J</name>
-    <version>1.6.2-SNAPSHOT</version>
+    <version>1.6.3-SNAPSHOT</version>
     <description>
         The Apache WSS4J project provides a Java implementation of the primary security standards 
         for Web Services, namely the OASIS Web Services Security (WS-Security) specifications 

Modified: webservices/wss4j/trunk/src/main/java/org/apache/ws/security/message/token/BinarySecurity.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/src/main/java/org/apache/ws/security/message/token/BinarySecurity.java?rev=1156709&r1=1156708&r2=1156709&view=diff
==============================================================================
--- webservices/wss4j/trunk/src/main/java/org/apache/ws/security/message/token/BinarySecurity.java (original)
+++ webservices/wss4j/trunk/src/main/java/org/apache/ws/security/message/token/BinarySecurity.java Thu Aug 11 18:11:10 2011
@@ -81,7 +81,7 @@ public class BinarySecurity {
             // The EncodingType attribute must be specified, and must be equal to Base64Binary
             throw new WSSecurityException(
                 WSSecurityException.INVALID_SECURITY_TOKEN,
-                "badEncoding", 
+                "badEncodingType", 
                 new Object[] {encoding}
             );
         }