I can obtain the Weblogic InitialContext from a JNDI Client using the following properties as the Environment parameters for InitialContext Hashtable jndiProps = new Hashtable(); Hashtable.put( the below 4) java.naming.factory.initial "t3://localhost:7001" java.naming.provider.url "weblogic.jndi.WLInitialContextFactory" java.naming.security.principal "weblogic" java.naming.security.credentials "weblogic"
InitialContext ctx = new InitialContext(jndiProps);
The question is, is there a way to obtain the InitialContext without specifying the security.credentials as cleartext but maybe as a hashed value?