User: mnf999  
  Date: 02/02/06 12:59:27

  Modified:    src/main/org/jboss/invocation/jrmp/server JRMPInvoker.java
  Log:
  The invocation branching is now based on int and a case switch (SPEEEEEEEED)
  
  Revision  Changes    Path
  1.9       +2 -2      jboss/src/main/org/jboss/invocation/jrmp/server/JRMPInvoker.java
  
  Index: JRMPInvoker.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/invocation/jrmp/server/JRMPInvoker.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- JRMPInvoker.java  2002/02/06 19:30:57     1.8
  +++ JRMPInvoker.java  2002/02/06 20:59:27     1.9
  @@ -54,7 +54,7 @@
   *
   *  @author <a href="mailto:[EMAIL PROTECTED]>Marc Fleury</a>
   *
  -*  @version $Revision: 1.8 $
  +*  @version $Revision: 1.9 $
   *
   *  <p><b>Revisions:</b><br>
   *  <p><b>2002/01/13: Sacha Labourey</b>
  @@ -319,7 +319,7 @@
            ObjectName mbean = (ObjectName) Registry.lookup((Integer) 
invocation.getContainer());
            
            // The cl on the thread should be set in another interceptor
  -         return new MarshalledObject(server.invoke(mbean, invocation.getType(),  
new Object[] {invocation}, new String[] {"java.lang.Object"})); 
  +         return new MarshalledObject(server.invoke(mbean, null,  new Object[] 
{invocation}, new String[] {"java.lang.Object"})); 
         }
         
         catch (MBeanException mbe) { throw mbe.getTargetException(); }
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to