ruby-net-ldap
ruby-net-ldap copied to clipboard
Pure Ruby LDAP library
After doing #search, the same api close ldap server connection. But by looking at the server logs the connection is not getting closed properly, it is showing "closing from ip-address:51646...
I'd like to add these tests since this behavior may be unexpected, in particular for users of the omniauth-ldap gem https://github.com/intridea/omniauth-ldap/blob/master/lib/omniauth-ldap/adaptor.rb#L93). Additionally, if this behavior changes (for example, by removing...
Environment: Windows XP, Java 1.6.0_29, JRuby 1.6.7 and net-ldap 0.3.1. JRuby is running in Ruby 1.9 mode. Scenario: Searching for computers in our Windows Active Directory. As I understand it,...
If an invalid DNS name is used, this is the `e.message` that gets raised: > ERROR [2017-04-20 12:52:05.397] ConsoleLogger: Error message: getaddrinfo: name or service not known As can be...
Haven't tested this PR on rubies < 2.2 yet, please consider it RFC. With this patch net/ldap will support md5, sha, sha1, sha256, sha384, sha512 password schemes (and salted variants)....
Originally submitted on RubyForge by James Hewitt as #23425 on 2009-01-03: I'd like to be able to leave an LDAP connection open. I know the library doesn't want me to,...
I'm using [range retrieval](https://msdn.microsoft.com/en-us/library/aa367017%28v=vs.85%29.aspx) on an AD server to load the members of a group containing around 5600 members. The resulting list of members contains duplicated entries, and is missing...
fixes #246 (hi @danleyden), relevant RFCs are [2255 (obsolete)](https://tools.ietf.org/html/rfc2255) and [4516](https://tools.ietf.org/html/rfc4516). This is in-progress because I haven't updated the class docs or tests yet. Before I do, I wanted to...
Originally submitted as issue 8591 on RubyForge on 2007-02-13. bind and bind_as return results if a empty password is submitted. If a incorrect password is given it fails. However to...
I'd like to be able to use `modify` exactly the same as I use `add`. With `add` obviously you're sending a hash of all attributes an entity gets. The best...