Active Directory/Connect: Difference between revisions

(Added PicoLisp)
Line 2:
[[description::requires improvement| ]]
[[Category:Less_Than_5_Examples]]
 
=={{header|C}}==
With OpenLDAP:
<lang C>#include <ldap.h>
...
char *name, *password;
...
LDAP *ld = ldap_init("ldap.somewhere.com", 389);
ldap_simple_bind_s(ld, name, password);
... after done with it...
ldap_unbind(ld);</lang>
 
=={{header|Perl}}==
Anonymous user