-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
list of DN elements is truncated when using search method on JndiService #176
Comments
Seems the issue is in the scripting engine ( |
…able in the middle of the code.
@soisik @davidcoutadeur @rouazana we would like a review on #299 |
Global OpenLDAP setting to get a soft limit of 100 entries and hard limit unlimited:
We can test the pagedResult control with ldapsearch like this:
|
- Reverted changes to re-introduce functionality for sortedBy and pagination. - Created a method to retrieve pagination cookie. - Fixed pagination when searching via jScript.
…ug with outdated paging cookie.
I have reviewed part of the code, and done some tests about this issue. Here is the status:
at OpenLDAP side:
extensions sent seem to be managed by OpenLDAP : 1.2.840.113556.1.4.319 and 2.16.840.1.113730.3.4.2 |
Finally I found what was wrong about the errors I previously mentioned. The problem is the paged control is applied also to the modification, which is not permitted by the protocol. Paged control must be applied only to search requests. |
The number of elements returned by the search method is limited by MaxPageSize configuration of the ldap server.
Even if the PageSize configuration is populated with a positive number.
The text was updated successfully, but these errors were encountered: