-
Notifications
You must be signed in to change notification settings - Fork 55
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
Binary attributes are converted to string when queried by #320
Comments
This issue may somehow be related to spring-projects/spring-ldap#634 |
|
We've introduced |
I have the following Entity
When I search by guid with value
90d1c68e-01be-4485-aafd-b3ffb9ddb026
converted to a 32 element byte array, the library generates the following request:base=ou=users, finalFilter=(&(&(objectclass=top)(objectclass=person)(objectclass=user))(objectGUID=[B@7363e35b))
And the result is always empty. The correct filter would be:
base=ou=users, finalFilter=(&(&(objectclass=top)(objectclass=person)(objectclass=user))(objectGUID=\90\d1\c6\8e\01\be\44\85\aa\fd\b3\ff\b9\dd\b0\26))
Please, support binary attribute query parameters.
The text was updated successfully, but these errors were encountered: