by "huch" <schuch.markus@[EMAIL PROTECTED]
>
Oct 6, 2006 at 06:02 AM
We solved this problem by using the following properties for the
creation of the initial context:
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,
"weblogic.jndi.WLInitialContextFactory");
p.put(Context.PROVIDER_URL, iiop://host:****t);
InitialContext c = new InitialContext(p)
We replaced "com.sun.jndi.cosnaming.CNCtxFactory" with the weblogic
specific factory.
Markus