Radu Mardari
Radu Mardari

Reputation: 131

LDAP Client Library

I'm trying to write my own LDAP Client Library. Would you like to give me some examples of such libraries which use OOP. They can be written in C++, Java, C#, etc.

Thanks in advance!

Upvotes: -2

Views: 327

Answers (1)

Hirak
Hirak

Reputation: 3649

In java, LDAP can be connected through javax.naming.ldap.* packages which comes in standard distribution. I found the following two links, where in you can get sample codes.

http://www.adamretter.org.uk/blog/entries/LDAPTest.java

http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/LdapBasicExample.java?r=2

Upvotes: 1

Related Questions