[jboss-cvs] JBossRemoting/src/tests/org/jboss/test/remoting/transport/http/chunked ...

Tom Elrod tom.elrod at jboss.com
Mon Jul 31 23:02:38 EDT 2006


  User: telrod  
  Date: 06/07/31 23:02:38

  Modified:    src/tests/org/jboss/test/remoting/transport/http/chunked 
                        ChunkedServer.java
  Log:
  JBREM-561 - had to fix ChunkedServer to add invocation handler to the Connector being registered (as was throwing exception since one not registered).
  
  Revision  Changes    Path
  1.2       +2 -0      JBossRemoting/src/tests/org/jboss/test/remoting/transport/http/chunked/ChunkedServer.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ChunkedServer.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/tests/org/jboss/test/remoting/transport/http/chunked/ChunkedServer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- ChunkedServer.java	5 May 2006 06:07:11 -0000	1.1
  +++ ChunkedServer.java	1 Aug 2006 03:02:38 -0000	1.2
  @@ -27,6 +27,7 @@
   import org.jboss.remoting.ServerInvoker;
   import org.jboss.remoting.callback.InvokerCallbackHandler;
   import org.jboss.remoting.transport.Connector;
  +import org.jboss.test.remoting.transport.web.WebInvocationHandler;
   
   import javax.management.MBeanServer;
   
  @@ -45,6 +46,7 @@
      {
         connector = new Connector(locatorUrl);
         connector.create();
  +      connector.addInvocationHandler("test", new WebInvocationHandler());
   
         connector.start();
      }
  
  
  



More information about the jboss-cvs-commits mailing list