[ https://issues.apache.org/jira/browse/DIRAPI-89?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Emmanuel Lecharny updated DIRAPI-89: ------------------------------------ Affects Version/s: 1.0.0-M12 Fix Version/s: 1.0.0-M13 > EntryCursorImpl loops forever in next() when using AD Server with referrals > --------------------------------------------------------------------------- > > Key: DIRAPI-89 > URL: https://issues.apache.org/jira/browse/DIRAPI-89 > Project: Directory Client API > Issue Type: Bug > Affects Versions: 1.0.0-M12 > Environment: Mac > Reporter: Dave Briccetti > Labels: ActiveDirectory, cursor > Fix For: 1.0.0-M13 > > > Search for a user that doesn’t exist on AD. Cursor provides four referrals, but no SearchResultDone. > val searchArg = "(&(objectclass=%s)(samaccountname=%s))".format(s.objectClass, user) > val cursor = connection.search(s.baseDn, searchArg, SearchScope.SUBTREE, "*") > next() hangs in this loop ending on line 102: > while ( !( response instanceof SearchResultDone ) ); > Using this code instead causes a SearchResultDone to appear after three referrals: > val searchRequest = new SearchRequestImpl().setBase(new Dn(s.baseDn)) > .setFilter(searchArg).setScope(SearchScope.SUBTREE).addControl(new ManageDsaITImpl()) -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira