[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/ssl ...

Tom Elrod tom.elrod at jboss.com
Wed Jul 12 00:49:52 EDT 2006


  User: telrod  
  Date: 06/07/12 00:49:52

  Modified:    src/tests/org/jboss/test/remoting/ssl 
                        SSLSupportedTransportTestCase.java
  Log:
  JBREM-496 & JBREM-492 & JBREM-535 - changed invoker loading to use a client and server factory instead of loading classes directly.  This allows users ability to plugin custom transport implementation with zero config.  Also added config for forcing remote call when client and server within same jvm (which was able to do previously using BYVALUE config, but not any more).  Also changed way to get hint if transport supports ssl to be provided by the transport factory instead of the transport itself.
  
  Revision  Changes    Path
  1.2       +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/ssl/SSLSupportedTransportTestCase.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: SSLSupportedTransportTestCase.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/ssl/SSLSupportedTransportTestCase.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- SSLSupportedTransportTestCase.java	22 Jun 2006 03:26:39 -0000	1.1
  +++ SSLSupportedTransportTestCase.java	12 Jul 2006 04:49:51 -0000	1.2
  @@ -32,7 +32,7 @@
      public void testTransportSupportsSSL() throws Exception
      {
         String[] transports = new String[] {"socket", "sslsocket", "multiplex", "sslmultiplex", "rmi", "sslrmi", "http", "https"};
  -      boolean[] expextedResult = new boolean[] {false, true, false, true, false, true, true, true};
  +      boolean[] expextedResult = new boolean[] {false, true, false, true, false, true, false, true};
   
         for(int x = 0; x < transports.length; x++)
         {
  
  
  



More information about the jboss-cvs-commits mailing list