I am trying to access an
EJB on the WTE in WSAD 5.0 ea. But when I run the client, it just stalls when I instantiate the InitialContext object.
Properties prop = new Properties();
prop.put(Context.INITIAL_CONTEXT_FACTORY,
"com.ibm.websphere.naming.WsnInitialContextFactory");
prop.put(Context.PROVIDER_URL, "iiop://localhost:8080");
InitialContext ctx = new InitialContext(prop);
Any ideas?