From: Chris R. <chr...@me...> - 2001-07-11 08:31:25
|
rob...@bt... wrote: > Hello, > I'm trying to read all entries from 2 different types of ldap server, one > of which is MS Exchange. > I manage to bind OK and issue a request for data, I get a single entry > returned then an error 84 (0x54). > these are specific to API and in both cases seem to mean > LDAP_DECODING_ERROR which one of the manufacturers says means it's a > problem with the ldap i/f as te error means their server cannot decode > the type of request being asked for (Version 2 or version 3) > > Any ideas? > thanks > Robert > That sounds unlikely - the server's already sent you one response followed by something that can't be decoded by Net::LDAP, hence the internal error from Net::LDAP. See the man page for Net::LDAP::Constant. If you can turn up debugging to print out the packets perl is getting back, this should help find the problem. Add: $ldap->debug(2); # man Net::LDAP for more details before issuing your search, and send us the resulting output. Cheers, Chris |