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

Tom Elrod tom.elrod at jboss.com
Mon Sep 25 22:27:52 EDT 2006


  User: telrod  
  Date: 06/09/25 22:27:52

  Modified:    src/main/org/jboss/remoting/transport/coyote 
                        CoyoteInvoker.java
  Log:
  JBREM-548 & JBREM-604 & JBREM-596 - updated so oneway invocations will only send data on client (and not wait for response) and only receive data on the server (and not write out response).  Also allowing socket server invoker to receive raw data from any client and send along to the handler.  Finally, fixed some issues where test cases were failing due to change leasing (JBREM-596) as well as changes made to http server invoker to work with messaging.
  
  Revision  Changes    Path
  1.21      +6 -6      JBossRemoting/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CoyoteInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/coyote/CoyoteInvoker.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -b -r1.20 -r1.21
  --- CoyoteInvoker.java	21 Sep 2006 07:31:02 -0000	1.20
  +++ CoyoteInvoker.java	26 Sep 2006 02:27:52 -0000	1.21
  @@ -324,7 +324,7 @@
               }
               else
               {
  -               if (isRemotingUserAgent)
  +               if (isRemotingUserAgent && !req.method().equals("HEAD"))
                  {
                     status = 200;
                     message = "OK";
  
  
  



More information about the jboss-cvs-commits mailing list