[jboss-user] [EJB 3.0] - Re: ejb3.0 problem, container not yet available??
ALRubinger
do-not-reply at jboss.com
Sat Apr 5 06:32:47 EDT 2008
Much more helpful.
Caused by: javax.ejb.EJBException: Invalid (i.e. remote) invocation of local interface (null container)
| at org.jboss.ejb3.stateless.StatelessLocalProxy.invoke(StatelessLocalProxy.java:80)
| at $Proxy88.deliver(Unknown Source)
Looks like someone's doing spookiness. ;)
Probably gotta post the code showing what you're doing here too, but the error at face value reads simple enough. Are you grabbing the local proxy via JNDI from a separate JVM?
"Local" and "Remote" pertain to JVMs - local is only inter-JVM calls. Anything else is "remote", regardless of the physical location of the runtime. Pass-by-value and network marshalling are required, and local passes references.
S,
ALR
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141825#4141825
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4141825
More information about the jboss-user
mailing list