in reply to LDAP attribute modifciation failed
The Net::LDAP documentation shows the following approach for error checking. Why are you not using it?
$mesg = $ldap->search( # perform a search base => "c=US", filter => "(&(sn=Barr) (o=Texas Instruments))" ); $mesg->code && die $mesg->error;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: LDAP attribute modifciation failed
by anakin30 (Acolyte) on Aug 29, 2012 at 07:35 UTC | |
by Corion (Patriarch) on Aug 29, 2012 at 08:23 UTC | |
by anakin30 (Acolyte) on Aug 29, 2012 at 09:02 UTC |