我正在尝试在我的MVC应用中使用AD LDS进行用户身份验证。我设法写了一些代码,允许我创建/编辑/删除用户和组,但我似乎无法验证它们。这是我的示例代码:
using( var context = new PrincipalContext(ContextType.ApplicationDirectory, "Lenovo_T61-LapT",
"CN=Kontrahenci,DC=TestApp,DC=local"))
{
var userName = "avg.joe";
var email = "avg.joe@smwhr.us";
var password = "123456";
var user = new UserPrincipal(context)
{
Name = userName,
EmailAddress = email
};
user.SetPassword(password);
user.Save();
if (context.ValidateCredentials(userName , password, ContextOptions.SimpleBind))
Console.WriteLine("Hooray!");
user.Dispose();
}
不幸的是,这永远不会出现“Writeline”,只会出现密码或用户名不正确的错误。
我玩过ContextOptions但没有运气。
有什么想法吗?
答案 0 :(得分:7)
所以我找到了我在类似question上发布的解决方案。
我做了什么,并且对我有用,就是在调用ValidateCredentials时我稍微修改了用户名:
bool auth = context.ValidateCredentials(
String.Format("CN={0},CN=Kontrahenci,DC=TestApp,DC=loc",
userName),
password);
希望这有帮助。