Active Directory/Connect: Difference between revisions

Content added Content deleted
(Description requires improvement)
(Perl solution, basically the same as Ruby)
Line 4: Line 4:


{{omit from|Clojure}}
{{omit from|Clojure}}

=={{header|Perl}}==
[http://search.cpan.org/dist/perl-ldap/|Perl LDAP Modules]
<lang perl>
use Net::LDAP;

my $ldap = Net::LDAP->new('ldap://ldap.example.com') or die $@;
my $mesg = $ldap->bind( $bind_dn, password => $bind_pass );
</lang>


=={{header|PHP}}==
=={{header|PHP}}==