I want to fetch some user information from LDAP Active directory by using Id. here is the code I'm trying to connect and fetch it.
SearchControls ctls = new SearchControls();
ctls.setSearchScope(SearchControls.SUBTREE_SCOPE);
NamingEnumeration results = ctx.search("DC=erieinsurance,DC=com", "(&(objectCategory=user)(name{0}))",
new Object[]{Id}, // filter arguments
ctls); // search controls
}
if (results.hasMoreElements()) {
}
it is returning no correspnding values of givenname and sn.
Is there anything wrong in the above filter? any suggestions around would be appreciated.