From: Chris R. <chr...@me...> - 2000-08-07 17:12:23
|
Graham Barr <gb...@po...> wrote: >> $ldap->unbind; > > Not needed and some servers may not like it. That's not the whole story. Unbind itself is required by the RFCs, but the sequence of unbind followed by another bind *on the same connection* is something that causes problems on some servers. (Some servers treat the unbind as a request to close the TCP connection.) If you're going to bind twice on the same connection, don't unbind first. Cheers, Chris |