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 ...
So I want to create a user account in Windows 2003 with Active Directory utilizing JNDI. I am following the following example: http://forums.sun.com/thread.jspa?threadID=582103 (first post). The following code is ...
I am trying to change the user's password via JNDI but i am getting the error below.
javax.naming.directory.SchemaViolationException: [LDAP: error code 65 - Entry uid=yiwei,ou=Administrator,o=SID,dc=QuizPortal cannot not be modified because the resulting ...
Though your example shows using a jndi file, you user name is actually hard coded. I believe my original question is how to use JNDI with the user name and password. The user name and password can be dynamically retireved and set for each authorized user on the fly. It is just how to achieve it. Most JNDI examples are without ...