[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

problem doing find in ActiveLdap

Claudio Claudio

7/19/2007 1:33:00 PM

require 'active_ldap'

ActiveLdap::Base.establish_connection(
:host => 'hostname',
:bind_dn => 'cn=admin,ou=users,dc=company,dc=it',
:base => 'ou=addressbooks,dc=company,dc=it',
:password_block => 'admin'
)

class Addressbook < ActiveLdap::Base
ldap_mapping :dn_attribute => 'cn', :prefix => 'ou=addressbooks'
end

p Addressbook.find(:all, 'John')
p Addressbook.find(:all, :attribute => 'givenName', :value => 'John')

both find returns []

What am I doing wrong?

thanks

--
Posted via http://www.ruby-....

2 Answers

Kouhei Sutou

7/19/2007 11:14:00 PM

0

Hi,

2007/7/19, Claudio Claudio <claudio.fiorini@gmail.com>:

> ActiveLdap::Base.establish_connection(
> :host => 'hostname',
> :bind_dn => 'cn=admin,ou=users,dc=company,dc=it',
> :base => 'ou=addressbooks,dc=company,dc=it',
> :password_block => 'admin'
> )

You need to pass Proc object to :password_block or use :password
with String.

> class Addressbook < ActiveLdap::Base
> ldap_mapping :dn_attribute => 'cn', :prefix => 'ou=addressbooks'
> end

In your configuration, you need to set :prefix to '' because you already
specify 'ou=addressbooks,dc=company,dc=it' as :base in
establish_connection. Or change :base to 'dc=company,dc=it' and keep
:prefix 'ou=addressbooks'.


Thanks,
--
kou

Claudio Claudio

7/20/2007 7:45:00 AM

0

Kouhei Sutou wrote:
> Hi,
>
> 2007/7/19, Claudio Claudio <claudio.fiorini@gmail.com>:
>
>> ActiveLdap::Base.establish_connection(
>> :host => 'hostname',
>> :bind_dn => 'cn=admin,ou=users,dc=company,dc=it',
>> :base => 'ou=addressbooks,dc=company,dc=it',
>> :password_block => 'admin'
>> )
>
> You need to pass Proc object to :password_block or use :password
> with String.
>
>> class Addressbook < ActiveLdap::Base
>> ldap_mapping :dn_attribute => 'cn', :prefix => 'ou=addressbooks'
>> end
>
> In your configuration, you need to set :prefix to '' because you already
> specify 'ou=addressbooks,dc=company,dc=it' as :base in
> establish_connection. Or change :base to 'dc=company,dc=it' and keep
> :prefix 'ou=addressbooks'.
>
>
> Thanks,

I follow your directive and i added this:

pwb = Proc.new do |user|
ActiveLdap::Command.read_password("[#{user}] Password: ")
end

...and works like a charm!!!!

Thanks a lot!

--
Posted via http://www.ruby-....