vote up 0 vote down star

Using SQL Server 2005, how can I authenticate a username/password pair against a non-AD LDAP server using NET ?

flag

1 Answer

vote up 0 vote down check

If calling from SQL Server 2005, you'll need to create a .NET stored procedure.

Using .NET to connect to LDAP:

http://msdn.microsoft.com/en-us/library/system.directoryservices.aspx

using System.DirectoryServices;

DirectoryEntry DE = new DirectoryEntry(LDAPPath, LDAP_Domain + account, password, AuthenticationTypes.Secure);

if (DE == null)
{
   // Login failure
}
link|flag
Hi Darryl, Unfortunately, the System.Directory set of assemblies/services aren't available to SQL via the CLR services. – Alex Waddell Oct 16 at 21:08
You can access the assembly, but it considered an "Unsupported Library". I've included a couple of URLs about this. dbaspot.com/forums/ms-sqlserver/… msdn.microsoft.com/en-us/library/… – Darryl Peterson Oct 18 at 20:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.