[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/detection/multicast/deadlock ...

Tom Elrod tom.elrod at jboss.com
Sun Jul 23 15:20:51 EDT 2006


  User: telrod  
  Date: 06/07/23 15:20:51

  Modified:    src/tests/org/jboss/test/remoting/detection/multicast/deadlock  
                        MulticastDetectorClient.java
                        MulticastDetectorServer.java
  Log:
  JBREM-553 - forgot to change the transport from socket to sslsocket
  
  Revision  Changes    Path
  1.3       +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/detection/multicast/deadlock/MulticastDetectorClient.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MulticastDetectorClient.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/detection/multicast/deadlock/MulticastDetectorClient.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MulticastDetectorClient.java	23 Jul 2006 19:14:25 -0000	1.2
  +++ MulticastDetectorClient.java	23 Jul 2006 19:20:51 -0000	1.3
  @@ -77,7 +77,7 @@
         remotingClient = new Client(serverLocator, config);
         remotingClient.connect();
   
  -      String invokerLocatorurl = "socket://localhost:8700";
  +      String invokerLocatorurl = "sslsocket://localhost:8700";
         connector = new Connector(invokerLocatorurl, config);
         connector.create();
   
  
  
  
  1.3       +1 -1      JBossRemoting/src/tests/org/jboss/test/remoting/detection/multicast/deadlock/MulticastDetectorServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MulticastDetectorServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/detection/multicast/deadlock/MulticastDetectorServer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -b -r1.2 -r1.3
  --- MulticastDetectorServer.java	23 Jul 2006 19:14:25 -0000	1.2
  +++ MulticastDetectorServer.java	23 Jul 2006 19:20:51 -0000	1.3
  @@ -46,7 +46,7 @@
         int port = TestUtil.getRandomPort();
         System.out.println("port = " + port);
   
  -      InvokerLocator locator = new InvokerLocator("socket://localhost:" + port);
  +      InvokerLocator locator = new InvokerLocator("sslsocket://localhost:" + port);
   
         System.out.println("Starting remoting server with locator uri of: " + locator.getLocatorURI());
   
  
  
  



More information about the jboss-cvs-commits mailing list