.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

Popular posts from this blog

asp.net - Javascript/DOM Why is does my form not support submit()? -

sockets - Delphi: TTcpServer, connection reset when reading -

javascript - Classic ASP "ExecuteGlobal" statement acting differently on two servers -