How to connect with Java into Active Directory

后端 未结 3 1316
太阳男子
太阳男子 2020-12-01 02:26

I am using Weblogic, Ejb3.0. Java 1.6

I need to access Active Directory via Java code. I read about several ways (Kerberos, LDAP)

Anyone could advice me on c

相关标签:
3条回答
  • 2020-12-01 02:39

    You can query Active directory via JNDI and run LDAP operations

    http://docs.oracle.com/javase/tutorial/jndi/ldap/authentication.html
    http://docs.oracle.com/javase/tutorial/jndi/ldap/operations.html
    http://mhimu.wordpress.com/2009/03/18/active-directory-authentication-using-javajndi/

    0 讨论(0)
  • 2020-12-01 02:49

    Here is a simple code that authenticate and make an LDAP search usin JNDI on a W2K3 :

    class TestAD
    {
      static DirContext ldapContext;
      public static void main (String[] args) throws NamingException
      {
        try
        {
          System.out.println("Début du test Active Directory");
    
          Hashtable<String, String> ldapEnv = new Hashtable<String, String>(11);
          ldapEnv.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
          //ldapEnv.put(Context.PROVIDER_URL,  "ldap://societe.fr:389");
          ldapEnv.put(Context.PROVIDER_URL,  "ldap://dom.fr:389");
          ldapEnv.put(Context.SECURITY_AUTHENTICATION, "simple");
          //ldapEnv.put(Context.SECURITY_PRINCIPAL, "cn=administrateur,cn=users,dc=societe,dc=fr");
          ldapEnv.put(Context.SECURITY_PRINCIPAL, "cn=jean paul blanc,ou=MonOu,dc=dom,dc=fr");
          ldapEnv.put(Context.SECURITY_CREDENTIALS, "pwd");
          //ldapEnv.put(Context.SECURITY_PROTOCOL, "ssl");
          //ldapEnv.put(Context.SECURITY_PROTOCOL, "simple");
          ldapContext = new InitialDirContext(ldapEnv);
    
          // Create the search controls         
          SearchControls searchCtls = new SearchControls();
    
          //Specify the attributes to return
          String returnedAtts[]={"sn","givenName", "samAccountName"};
          searchCtls.setReturningAttributes(returnedAtts);
    
          //Specify the search scope
          searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);
    
          //specify the LDAP search filter
          String searchFilter = "(&(objectClass=user))";
    
          //Specify the Base for the search
          String searchBase = "dc=dom,dc=fr";
          //initialize counter to total the results
          int totalResults = 0;
    
          // Search for objects using the filter
          NamingEnumeration<SearchResult> answer = ldapContext.search(searchBase, searchFilter, searchCtls);
    
          //Loop through the search results
          while (answer.hasMoreElements())
          {
            SearchResult sr = (SearchResult)answer.next();
    
            totalResults++;
    
            System.out.println(">>>" + sr.getName());
            Attributes attrs = sr.getAttributes();
            System.out.println(">>>>>>" + attrs.get("samAccountName"));
          }
    
          System.out.println("Total results: " + totalResults);
          ldapContext.close();
        }
        catch (Exception e)
        {
          System.out.println(" Search error: " + e);
          e.printStackTrace();
          System.exit(-1);
        }
      }
    }
    
    0 讨论(0)
  • 2020-12-01 02:56

    You can use DDC (Domain Directory Controller). It is a new, easy to use, Java SDK. You don't even need to know LDAP to use it. It exposes an object-oriented API instead.

    You can find it here.

    0 讨论(0)
提交回复
热议问题