SQL Server LDAP认证
使用SQL Server 2005,如何使用NET对非AD LDAP服务器验证用户名/密码对?
如果从SQL Server 2005调用,则需要创建一个.NET存储过程。
使用.NET连接到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
}
链接地址: http://www.djcxy.com/p/7723.html