Find domain of a user from Active Directory
Posted
by bhanu
on Stack Overflow
See other posts from Stack Overflow
or by bhanu
Published on 2010-03-08T07:28:16Z
Indexed on
2010/03/08
7:36 UTC
Read the original article
Hit count: 200
active-directory
|domain
Wrote a java code to search for users from Active Directory server. We get the user list but dont know the domain to which each user belongs. How can the domain of the user be found from Active Directory programatically.
One method thought of is :
1)Get the distinguished name of user from Active Directory. 2)Parse the distinguished name. 3)Get the substring that starts the first instance of "DC=". 4)Strip off the "DC=" at the beginning. 5)Replace all instances of ",DC=" with a "." 6)What is left is the DNS domain name of the user.
Is this reliable. Please suggest some other solution.
© Stack Overflow or respective owner