Hi, I use JNDI and i have some search result entries and i can get their dn s like
NamingEnumeration answer = ctx.search(searchBaseDn, filter, ctls);
try
{
while (answer.hasMore())
{
SearchResult sr = (SearchResult) answer.next();
OrganizationPojo organizationPojo = new OrganizationPojo();
organizationPojo.setDn((String)sr.getName());
...
How can i get parent entry/dn ?
