views:

158

answers:

3

Was wondering if anyone had any recommendations on a .NET (preferebly 3.5) Active Directory API wrapper around the .NET libraries?

Essentially, I'm looking for a class library that could be dropped into a project or even exposed in larger part of a company-wide framework that takes a lot of the hassle of writing your own.

Also, ideally using a third part assembly would take a great deal of the maintenance work out.

+1  A: 

There is a .NET lib called

System.DirectoryServices

It's installed with the .net framework. It's not included by default in a project. Just do "add reference". then the .NET tab then System.DirectoryServices.

Julian de Wit
I'm aware of the .NET libraries. I was looking for recommendations on wrappers around these .Net libraries...
Jason
+1  A: 

Just to note, Active Directory is an LDAP implementation. In addition to System.DirectoryServices, already mentioned. Novel developed an LDAP provider, that should work fine with AD. here's some more info on Novell.Directory.Ldap

Tracker1
A: 

I've not used it yet, but am looking for the same thing and ran across this site. Seem like it has all the features needed to easily do the common tasks needed in an enterprise application.

http://dotnetactivedirectory.com/

Bill