From: christophe O. <chr...@ce...> - 2001-05-04 15:19:14
|
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 |