in reply to verifification of LDAP credentials
Have a look at Net::LDAP, and bind
Inspired from the manual page :
$ldap = Net::LDAP->new( 'ldap.umich.edu' ); # bind to a directory with dn and password $mesg = $ldap->bind( 'cn=root, o=University of Michigan, c=us', password => 'secret' ); die "Invalid credential" if $mesg->is_error;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: verifification of LDAP credentials
by kamesh3183 (Beadle) on Dec 03, 2004 at 13:05 UTC | |
by zejames (Hermit) on Dec 03, 2004 at 13:24 UTC |