in reply to How do you check a 'bind' in LDAP?
The object will hold the error code if there is one, so you can check it. Here's an excerpt from the FAQ: http://ldap.perl.org/FAQ.html
"Most methods in Net::LDAP return a Net::LDAP::Message object, or a sub-class of that. This object will hold the results from the server, including the result code. So, for example, to determine the result of the bind operation.
"$mesg = $ldap->bind( $dn, password => $passwd ); if ( $mesg->code ) { # Handle error codes here }
Hope this helps,
Hays
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do you check a 'bind' in LDAP?
by LittleGreyCat (Scribe) on Sep 18, 2006 at 13:09 UTC |