User: fleury
Date: 00/06/04 16:19:02
Modified: src/main/org/jboss/ejb/plugins/jrmp/server
JRMPContainerInvoker.java
Log:
Digging out the Alien bug, I put the debug traces (I need to work from home tonight)
I will remove them as soon as it is done.
Note: the MethodInvocation code is fixed now there is something in the container as
well... (wrong number of arguments) something tells me that the lookup is the same and
still very screwed up ... we need to change the container ways of looking the methods
up.
It will speed it up (precalculate and dont use a static map) as well as (hopefully)
make it work
Revision Changes Path
1.6 +5 -1
jboss/src/main/org/jboss/ejb/plugins/jrmp/server/JRMPContainerInvoker.java
Index: JRMPContainerInvoker.java
===================================================================
RCS file:
/products/cvs/ejboss/jboss/src/main/org/jboss/ejb/plugins/jrmp/server/JRMPContainerInvoker.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- JRMPContainerInvoker.java 2000/05/19 07:34:33 1.5
+++ JRMPContainerInvoker.java 2000/06/04 23:19:02 1.6
@@ -52,7 +52,7 @@
*
* @see <related>
* @author Rickard �berg ([EMAIL PROTECTED])
- * @version $Revision: 1.5 $
+ * @version $Revision: 1.6 $
*/
public abstract class JRMPContainerInvoker
extends RemoteServer
@@ -108,6 +108,10 @@
try
{
+
+ Method m = mi.getMethod();
+ System.out.println("In invoke Home
"+m.getDeclaringClass()+m.getName()+m.getParameterTypes().length);
+
return con.invokeHome(mi.getMethod(), mi.getArguments());
// return new MarshalledObject(con.invoke(mi.getId(), mi.getMethod(),
mi.getArguments()));
} finally