[jbossws-commits] JBossWS SVN: r6417 - stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Apr 14 09:04:12 EDT 2008


Author: darran.lofthouse at jboss.com
Date: 2008-04-14 09:04:11 -0400 (Mon, 14 Apr 2008)
New Revision: 6417

Modified:
   stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java
   stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java
   stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java
Log:
Fix some compilation failures.

Modified: stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java	2008-04-14 12:58:16 UTC (rev 6416)
+++ stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/MicrosoftInteropTestCase.java	2008-04-14 13:04:11 UTC (rev 6417)
@@ -95,7 +95,7 @@
       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/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java	2008-04-14 12:58:16 UTC (rev 6416)
+++ stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/RoundTripTestCase.java	2008-04-14 13:04:11 UTC (rev 6417)
@@ -95,7 +95,7 @@
       env = soapMsg.getSOAPPart().getEnvelope();
       doc = env.getOwnerDocument();
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), null);
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), null, null);
       decoder.decode(doc);
       decoder.verify(buildRequireOperations());
       decoder.complete();

Modified: stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java
===================================================================
--- stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java	2008-04-14 12:58:16 UTC (rev 6416)
+++ stack/native/branches/dlofthouse/JBWS-1316/src/test/java/org/jboss/test/ws/jaxrpc/wsse/SunInteropTestCase.java	2008-04-14 13:04:11 UTC (rev 6417)
@@ -72,7 +72,7 @@
       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();
 
@@ -107,7 +107,7 @@
       cal.set(Calendar.SECOND, 40);
 
 
-      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null);
+      SecurityDecoder decoder = new SecurityDecoder(new SecurityStore(), cal, null, null);
       decoder.decode(doc);
       decoder.complete();
 




More information about the jbossws-commits mailing list