[jbossws-commits] JBossWS SVN: r8758 - stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Tue Nov 18 12:33:34 EST 2008


Author: darran.lofthouse at jboss.com
Date: 2008-11-18 12:33:33 -0500 (Tue, 18 Nov 2008)
New Revision: 8758

Modified:
   stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java
   stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java
   stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java
Log:
Further backport for -r 7167

Modified: stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java	2008-11-18 17:22:16 UTC (rev 8757)
+++ stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java	2008-11-18 17:33:33 UTC (rev 8758)
@@ -95,7 +95,8 @@
       cal.set(Calendar.MINUTE, 22);
       cal.set(Calendar.SECOND, 25);
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null);
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null, null);
+
       decoder.decode(soapEnv.getOwnerDocument());
       decoder.complete();
 

Modified: stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java	2008-11-18 17:22:16 UTC (rev 8757)
+++ stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java	2008-11-18 17:33:33 UTC (rev 8758)
@@ -92,8 +92,8 @@
       env = soapMsg.getSOAPPart().getEnvelope();
       doc = env.getOwnerDocument();
 
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), null, null);
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), null);
       decoder.decode(doc);
       decoder.verify(buildRequireOperations());
       decoder.complete();

Modified: stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java	2008-11-18 17:22:16 UTC (rev 8757)
+++ stack/native/branches/dlofthouse/JBPAPP-1349/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java	2008-11-18 17:33:33 UTC (rev 8758)
@@ -72,7 +72,8 @@
       cal.set(Calendar.MINUTE, 32);
       cal.set(Calendar.SECOND, 25);
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null);
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null, null);
+
       decoder.decode(doc);
       decoder.complete();
 
@@ -106,8 +107,8 @@
       cal.set(Calendar.MINUTE, 8);
       cal.set(Calendar.SECOND, 40);
 
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null, null);
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null);
       decoder.decode(doc);
       decoder.complete();
 




More information about the jbossws-commits mailing list