I have been looking around for some time, and I cannot find a solution, the problem is as follows:
- I have an EJB3 application deployed in jBoss 6.0, with remote ejb's.
- I have a web application (JSF 2.0) deployed in Tomcat 6.0.
I don't want to run the tomcat web application in jBoss, its an application running under tomcat, and the architecture should remain the same.
I don't want to lookup the EJB manually (I want to inject it) in other words I don't want to do it like this:
Properties properties = new Properties();
properties.setProperty("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
properties.setProperty("java.naming.provider.url", "jnp://localhost:1099");
properties.setProperty("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
Context c = new InitialContext();
MySB mySB = (MySB) c.lookup("MySB/remote");
What I do need is to inject the jBoss EJB's into managed beans in the Tomcat application, for example
@EJB(name="MySB/remote")
protected MySB mySB;
as if the MySB/remote is in the tomcat local JNDI, but in fact its being looked up from the jBoss JNDI behind the scenes.
is that possible?