From: Graham B. <gb...@po...> - 2001-05-04 15:30:44
|
This is the wrong list for this question. This list discusses the Net::LDAP module, not the mozilla modules. You may find better help at http://www.mozilla.org/directory/perldap.html Graham. On Fri, May 04, 2001 at 05:19:29PM +0100, christophe OLIVAR wrote: > Hi, > > I'm using LDAP with ActivePerl. > I have install the package (ppm command) perlLDAP > > i have write this little program : > > ======================================== > package ciddn; > use strict; > use Mozilla::LDAP::Conn; > use Mozilla::LDAP::Utils; > > ... > > my $base = "ou=personne,ou=Cegetel,o=elearning.com"; > my $conn = new Mozilla::LDAP::Conn("gtwmbds5c.ceram.fr", "389", > "cn=Directory Manager", "inovatel"); die "No LDAPconnection" unless $conn; > > my $entry = $conn->search($base, "subtree", "*"); > my @result=(); > if (!$entry) > { > print "pas entry !\n"; > } > else > { > my $i=0; > while ($entry) > { > @result[$i]=$entry->{"userPassword"}; > print $entry->{"userPassword"}. "\n"; > $i=$i+1; > $entry = $conn->nextEntry(); > } > } > ======================================== > > when I execute this program an windows NT's error message appears > > need NSLDAPSSL32V30.dll ... > > Question is how can I repair this problem ? > Must I use a patch ? Where can I find IT ? > > Thanks, > > Christophe OLIVAR > > > |