I'm trying to use "ldap_search_ext_s" and/or "ldap_search_ext" from
ldap-python in order to limit the size of my query result to an Active
Directory server.
http://lists.sourceforge.net/lists/listinfo/python-ldap-dev
result = i_ldap.search_ext_s(base,ldap.SCOPE_SUBTREE,'sn=*',sizelimit=5)
I know AD MaxPageSize is 1000 but my limit is only 5 and the result is always:
SIZELIMIT_EXCEEDED
Simply don't set sizelimit=5 when calling method search_ext_s.
Ciao, Michael.