I am trying to fetch a list of users (user fullnames) belong to TEST group. The search query I am using is
NamingEnumeration<?> enumeration = ldapCtx.search("ou=staff,o=filenet,dc=test,dc=com", "(cn=TEST_GROUP)", searchCtls);
It returns the group with uniquemembers list containing dn of all users. How do I fetch the fullname for these users ?
Note: I am using Tivoli Directory service. But a generic answer is fine.