[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: EJB refs across EARs don't work

2008-08-08 Thread hamtho2
And in which jar do I find the org.jboss.ejb3.annotation.LocalBinding? I only found it in the embedded JBoss, but this is definately not what I´d like to include in my jar-dependencies. And what is the reason, that there are two annotations LocalBinding? There is also one in

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: EJB refs across EARs don't work

2008-07-08 Thread jaikiran
Use the JNDIView http://wiki.jboss.org/wiki/DisplayTheJNDITreeWithTheJMXConsole to check what's the jndi name for your bean1 in EAR1. Then try using that as the mapped name for injecting this bean in bean2 in EAR2. You can post the JNDI tree here, if you need help in understanding the output.

[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: 5.0.0CR1: EJB refs across EARs don't work

2008-07-08 Thread jaikiran
anonymous wrote : @Stateless(mappedName=mapped/hska/Kundenverwaltung) | public class KundenverwaltungBean implements Kundenverwaltung Instead of mappedName, use @RemoteBinding for specifying JNDI name for the remote interface of the bean and @LocalBinding for the local interface: import