From: Graham B. <gb...@po...> - 2002-10-17 11:57:19
|
On Wed, Oct 16, 2002 at 01:35:29PM +0200, rm...@ds... wrote: > > Hi all, > > I get an I/O Error when executing this code: > > $ldap = Net::LDAPS->new($ldapserver, > port => '636', > verify => 'none', > ); > my $m = $ldap->search( base => $base, > attrs => ['dn'] , > filter => "(sAMAccountName=*)"); > > I use: > Redhat 7.2 > Perl 5.6.1 > perl-ldap 0.26 > Convert::BER 1.31 ( I updated it because I read it could be guilty) > the server is a Windows 2000 Advanced server SP2 Hm, We have had this reported before on win2k. I have this funny feeling that if we dont read the packets fast enough it triggers an issue in thier tcp stack which results in an io error. What happenes of you add callback => sub { $_[0]->shift_entry } to the search arguments ? Graham. |