(simple) LDAP service with C# [modified]
-
Hi guys! I have this idea of making all contact information in a business application I write some time ago available thru LDAP so that outlook/thunderbird etc. can access the contacts via network and I don't need to import/export everything. So basically, the idea was to create a simple wrapper to accept LDAP queries and return the data to the clients. The next step would then be to be able to edit/create new contacts. But the first matter would greatly ease my burden... Is there any library (C# or general .NET, ...) available to realize something like that? Best regards, Stevie
Greetings, Stephan Eberle hawke@deltacity.org
modified on Wednesday, January 28, 2009 9:47 AM
-
Hi guys! I have this idea of making all contact information in a business application I write some time ago available thru LDAP so that outlook/thunderbird etc. can access the contacts via network and I don't need to import/export everything. So basically, the idea was to create a simple wrapper to accept LDAP queries and return the data to the clients. The next step would then be to be able to edit/create new contacts. But the first matter would greatly ease my burden... Is there any library (C# or general .NET, ...) available to realize something like that? Best regards, Stevie
Greetings, Stephan Eberle hawke@deltacity.org
modified on Wednesday, January 28, 2009 9:47 AM
You'd have to write your own LDAP listener. There is no pre-packaged class in the .NET Framework that exposes this for you.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008 -
You'd have to write your own LDAP listener. There is no pre-packaged class in the .NET Framework that exposes this for you.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008Thank you, that's my intention! :) I just wanted to know, if there's already a working listener or something. Best regards, Stevie
Greetings, Stephan Eberle hawke@deltacity.org