.net - SQL Server LDAP authentication -
Using SQL Server 2005, how do I authenticate user names / password combinations using the Net-Ed LDAP server? Can i
If you have to call SQL Server 2005, you will need to create a .NET stored procedure.
The use of .NET to connect to LDAP:
System. Using the Directory Service; DirectoryEntry DE = new DirectoryEntry (LDAPPath, LDAP_Domain + account, password, AuthenticationTypes.Secure); If (DE == null) {// login failure}
Comments
Post a Comment