[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...

Tom Elrod tom.elrod at jboss.com
Tue Aug 15 12:41:16 EDT 2006


  User: telrod  
  Date: 06/08/15 12:41:16

  Modified:    src/main/org/jboss/remoting  Client.java
  Log:
  JBREM-580 - don't need to not do connection validation from client since will already have the ssl info.
  
  Revision  Changes    Path
  1.48      +0 -16     JBossRemoting/src/main/org/jboss/remoting/Client.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Client.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/Client.java,v
  retrieving revision 1.47
  retrieving revision 1.48
  diff -u -b -r1.47 -r1.48
  --- Client.java	15 Aug 2006 16:33:23 -0000	1.47
  +++ Client.java	15 Aug 2006 16:41:16 -0000	1.48
  @@ -59,7 +59,7 @@
    *
    * @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
    * @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
  - * @version $Revision: 1.47 $
  + * @version $Revision: 1.48 $
    */
   public class Client implements Externalizable
   {
  @@ -288,22 +288,6 @@
            {
               return;
            }
  -
  -         // added for JBREM-580 (don't use connection listener if is ssl)
  -         String transport = invoker.getLocator().getProtocol();
  -         try
  -         {
  -            boolean isSSL = InvokerRegistry.isSSLSupported(transport);
  -            if(isSSL)
  -            {
  -               return;
  -            }
  -         }
  -         catch(Exception e)
  -         {
  -            log.warn("Error when trying to determine if transport (" + transport + ") supports ssl when creating connection listener.");
  -            log.debug(e.getMessage(), e);
  -         }
         }
         if (connectionValidator == null)
         {
  
  
  



More information about the jboss-cvs-commits mailing list