User: mnf999  
  Date: 02/02/06 23:48:49

  Modified:    src/main/org/jboss/invocation/jrmp/server JRMPInvoker.java
  Log:
  Fix of Entity invoke() method by delegating to super
  
  Revision  Changes    Path
  1.10      +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.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- JRMPInvoker.java  6 Feb 2002 20:59:27 -0000       1.9
  +++ JRMPInvoker.java  7 Feb 2002 07:48:49 -0000       1.10
  @@ -54,7 +54,7 @@
   *
   *  @author <a href="mailto:[EMAIL PROTECTED]>Marc Fleury</a>
   *
  -*  @version $Revision: 1.9 $
  +*  @version $Revision: 1.10 $
   *
   *  <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, null,  new Object[] 
{invocation}, new String[] {"java.lang.Object"})); 
  +         return new MarshalledObject(server.invoke(mbean, "",  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