1. Obtaining an IntialContext from Weblogic without using clear text password stackoverflow.comI 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 ... |
2. Creating a user account in AD with JNDI and minimum password age stackoverflow.comSo 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 ... |
3. How to change LDAP password via JNDI stackoverflow.comI 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 ... |
4. How to retrieve LDAP password via JNDI stackoverflow.comI am able to read the password stored in LDAP via JNDI. But the result is some gibberish characters. So how do i decrypt it? Below is my code:
|
5. JNDI user name and password forums.oracle.comThough 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 ... |