posted 22 years ago
I changed the code and its working.
<mycode>
Properties env = new Properties();
env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.cosnaming.CNCtxFactory");
env.put(Context.PROVIDER_URL, "iiop://localhost:9010");
env.put(Context.SECURITY_PRINCIPAL, "myUserName 1234");
env.put(Context.SECURITY_CREDENTIALS, "myPassword 9876");
Context initial = new InitialContext(env);
Object objref = initial.lookup("MyJndiName");
MyEJBHome home = (MyEJBHome)PortableRemoteObject.narrow(objref, MyEJBHome.class);
</mycode>
Cheers!!
Zayed