[jboss-user] [Advanced Documentation] - Re: Invoking Ejb of Jboss 3.2.3 from JBoss 4.0.2
Lupson
do-not-reply at jboss.com
Fri Sep 1 02:39:02 EDT 2006
I think I found the solution in another thread here at the JBoss forums, but basically my solution for JNDI-lookups and RMI-calls between JBoss 4.0.4.GA (client) and JBoss 3.2.6 (server) was:
1. Install JBoss 3.2.8 instead of 3.2.6.
2. Run JBoss 3.2.8 with: "sh run.sh -Dorg.jboss.j2ee.Serialization -c all"
Now the (example) code below works fine.
| MyEjbRemoteHome home = MyEjbRemoteHome PortableRemoteObject.narrow( _context.lookup( "MyEjb"), MyEjbRemoteHome
| MyEjbRemote = home.create();
| remote.myMethod(...);
|
However - I do not know wether the -Dorg.jboss.j2ee.Serialization breaks > 3.2.7 interop or not.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3968838#3968838
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3968838
More information about the jboss-user
mailing list