File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes EJB and Other Java EE Technologies and the fly likes How to Call differ session beans... Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » EJB and Other Java EE Technologies
Reply Bookmark "How to Call differ session beans..." Watch "How to Call differ session beans..." New topic
Author

How to Call differ session beans...

T.J. Barry
Greenhorn

Joined: Jan 12, 2012
Posts: 1
I have a servlet that I want to call different session beans that utilize the same Interfaces (home and remote). Is this possible?
For instance:

Object o = new InitialContext().lookup("java:comp/env/testEJB");
TestHome home = (TestHome)javax.rmi.PortableRemoteObject.narrow(o, TestHome.class);

I know that in the interface I put


public interface TestHome extends javax.ejb.EJBHome {
public static final String COMP_NAME = "java:comp/env/ejb/TestSessionBean";
public static final String JNDI_NAME = "ejb/org/test/TestHome";

What if I want the Bean I call to be dynamic? like I pass the COMP_NAME...is this possible? Or am I going about this the wrong way?
Any help would be appreciated.
 
 
subject: How to Call differ session beans...
 
Threads others viewed
little help with start ejb testing
error while running EJB from java client on JBOSS
ejb myclipse weblogic error
could not find <ejb-local-ref>'s local interface
ejb create() Error java.lang. IllegalStateEx: Failed to find method for hash
IntelliJ Java IDE