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

Ovidiu Feodorov ovidiu.feodorov at jboss.com
Thu Oct 19 17:59:58 EDT 2006


  User: ovidiu  
  Date: 06/10/19 17:59:58

  Modified:    src/main/org/jboss/remoting  Client.java
  Log:
  http://jira.jboss.org/jira/browse/JBREM-611
  
  Revision  Changes    Path
  1.52      +4 -2      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.51
  retrieving revision 1.52
  diff -u -b -r1.51 -r1.52
  --- Client.java	26 Sep 2006 02:27:52 -0000	1.51
  +++ Client.java	19 Oct 2006 21:59:58 -0000	1.52
  @@ -61,7 +61,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.51 $
  + * @version $Revision: 1.52 $
    */
   public class Client implements Externalizable
   {
  @@ -138,7 +138,7 @@
      private ClientInvoker invoker;
      private ClassLoader classloader;
      private String subsystem;
  -   private String sessionId = new GUID().toString();
  +   private String sessionId;
      private ThreadPool onewayThreadPool;
      private InvokerLocator locator;
   
  @@ -241,6 +241,7 @@
         this.locator = locator;
         this.subsystem = subsystem == null ? null : subsystem.toUpperCase();
         this.configuration = configuration;
  +      this.sessionId = new GUID().toString();
      }
   
      /**
  @@ -260,6 +261,7 @@
         this.classloader = cl;
         this.subsystem = subsystem == null ? null : subsystem.toUpperCase();
         this.invoker = invoker;
  +      this.sessionId = new GUID().toString();
      }
   
      /**
  
  
  



More information about the jboss-cvs-commits mailing list