Hi I'm implementing an ldap query api. I would like to do it in such a way that I set a limit to 10 (say). I need ldap to return the first 10 values with a continuation-context-parameter that can be used to continue to return the next 10 results with a new query(with continuation-context-parameter passed as argument). Is this possible in ldap server?
Im trying to implement the api in java. I know that the SearchControl's setCountLimit() method can be used to set the number of elements but Im not able to find any methods that allow the results to be returned from where is originally left off.