This content has been marked as final.
Show 4 replies
-
1. Re: LDAP offset/limit search implementation
starksm64 Mar 3, 2007 10:42 AM (in response to bdaw)Paging has to be supported by the ldap server.
-
2. Re: LDAP offset/limit search implementation
bdaw Mar 3, 2007 10:53 AM (in response to bdaw)That is what I thought. So you confirm that using JNDI it's not possible to have server agnostic implementation?
-
3. Re: LDAP offset/limit search implementation
starksm64 Mar 3, 2007 11:05 AM (in response to bdaw)Its only possible if the servers support the LDAPv3 extension. If you look at the javax/naming/ldap/PagedResultsControl.java in java5 you will see its just relying on the extension described in http://www.ietf.org/rfc/rfc2696.txt
Agnostic code requires support of standard extensions. -
4. Re: LDAP offset/limit search implementation
bdaw Mar 3, 2007 11:09 AM (in response to bdaw)ok. thanks a lot for the clarifications.