[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ldap and ruby

Jan Lühr

2/13/2009 5:12:00 PM

Hello,

I'm using ruby/ldap (http://ruby-ldap.source...) for accessing
ldap-Servers so far, but run in a few issues with active directory
servers while using openldap2 as backend. (Crendentials seem to be
forgotten during searches)

Since ruby/ldap seems to be inactive so far (last release was in 2006)
I'm looking for alternatives.

ruby-net-ldap drew my attention, but this seem to be abandoned either.

Do you know any alternatives?

Thanks,
Keep smiling
yanosz
3 Answers

Suraj Kurapati

2/13/2009 7:58:00 PM

0

Jan Lühr wrote:
> ruby-net-ldap drew my attention, but this seem to be abandoned either.

Lack of updates doesn't necessarily mean abandonment. I think
ruby-net-ldap has just reached a stable point some years ago and needed
no further refinement to serve its purpose.

In my experince, ruby-net-ldap has *much* better documentation than
ruby/ldap and is also simpler to use. Try it! :-)
--
Posted via http://www.ruby-....

Adam Gardner

2/20/2009 9:49:00 PM

0

Jan Lühr wrote:
> Hello,
>
> I'm using ruby/ldap (http://ruby-ldap.source...) for accessing
> ldap-Servers so far, but run in a few issues with active directory
> servers while using openldap2 as backend. (Crendentials seem to be
> forgotten during searches)
>
> Since ruby/ldap seems to be inactive so far (last release was in 2006)
> I'm looking for alternatives.
>
> ruby-net-ldap drew my attention, but this seem to be abandoned either.
>
> Do you know any alternatives?
>
> Thanks,
> Keep smiling
> yanosz

I can also say, I've used ruby-net-ldap and was very happy with it. Give
it a try!
--
Posted via http://www.ruby-....

jfh

2/21/2009 6:07:00 AM

0

Adam Gardner wrote:

> I can also say, I've used ruby-net-ldap and was very happy with it. Give
> it a try!

The downside is that it doesn't seem to work with 1.9. I couldn't
get it to work at all even following up on some of the patches
and bug reports on the RubyForge page.

The good news is I created a patch for ruby-ldap-0.9.7 to get it
to work with ruby 1.9. I added it to the SourceForge tracker here
in case anyone's interested:

https://sourceforge.net/tracker/index.php?func=detail&aid=2622809&group_id=66444&a...

By the way, you can go a long way to porting a C extension to ruby 1.9
by just doing this:

ruby -pi -e '
gsub(/RARRAY\s*\((\S+?)\)->len/) { "RARRAY_LEN(#{$1})" }; gsub(/RARRAY\s*\((\S+?)\)->ptr/) { "RARRAY_PTR(#{$1})" }; gsub(/RSTRING\s*\((\S+?)\)->len/) { "RSTRING_LEN(#{$1})" }; gsub(/RSTRING\s*\((\S+?)\)->ptr/) { "RSTRING_PTR(#{$1})" }; ' file.c

----------------------------------------------------------------------
| Jim Hranicky, Security Engineer UF InfoSec Team |
| E202 SSRB Phone (352) 392-2061 |
| jfh@ufl.edu |
----------------------------------------------------------------------