Apache Geronimo > Discussion Forums  User List | Dev List | Wiki | Issue Tracker  

 « Return to Thread: JNDI Name for EJB3

Re: JNDI Name for EJB3

by Rodger :: Rate this Message:

Reply to Author | View in Thread

And <geronimo_home>/repository/org/apache/openejb/openejb-client/3.0.1/openejb-client-3.0.1.jar is necessary.

2009/6/18 Rodger <eternaljian@...>
http://cwiki.apache.org/GMOxDEV/client-jndi-names.html will use a RemoteInitialContextFactory.
Like:
        Properties p = new Properties();
        p.setProperty(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.RemoteInitialContextFactory");
        p.setProperty(Context.PROVIDER_URL, "ejbd://localhost:4201");
        Context initialContext=null;
        try {
            initialContext=new InitialContext(p);
                       
            Object object1 = initialContext.lookup("Secure3Remote");
            Secure3Remote s3r=(Secure3Remote)object1;
           
        } catch (NamingException e) {
            e.printStackTrace();
        }
--
Best Regards,
Rodger.



--
Best Regards,
Rodger.

 « Return to Thread: JNDI Name for EJB3