ruby-net-ldap
ruby-net-ldap copied to clipboard
Pure Ruby LDAP library
Remove provisonal gss-spnego and add documentation for net-ldap-gss-pnego gem
I'm querying what I understand to be a Tivoli server that has decided to limit the availability of paged results by some criteria. It thus advertises that it, as a...
I recently ran in to the seemingly popular [connection_pool](https://github.com/mperham/connection_pool) gem. This may be just what this gem needs to add connection pooling.
Internally we're still assuming ASCII-8 on all string, so when doing manipulations between a UTF-8 response from the server and internal strings it will fail with EncodingError on 1.9. This...
I see in the documentation how to read from LDIF files with `Net::LDAP::Dataset.read_ldif(File.open(file_path))` and how to save entries to LDIF files with `File.write file_path, entry.to_ldif`. However, I do not see...
If I have a user "Bob" whose account is brand new in LDAP, and I give him a temporary password of "Password123", when he tries to log in the result...
Remove Net::LDAP::ConnectionRefusedError, and add ssl_verify_warning method (that can be over ridden in tests) to make tests using this library less noisy.
This is an attempt to extend the work done by mtodd to provide timeouts for read and write operation with a given LDAP source, that I have added as part...
When I am trying to create any user with the dn => " CN=User1,CN=Guest,CN=Users,CN=test,CN=com" , I am not able to create the object but dn => " CN=User1, CN=Users,CN=test,CN=com" works...
Currently, an explicit "require 'net/ldap/rb'" is needed if one wants to use the Net::LDAP::DN class, because 'require net/ldap/dn' is missing in lib/net/ldap.rb For example: > require 'net/ldap' > => true...