gpt4 book ai didi

.net - ContextType.ApplicationDirectory 上的 AD LDS ValidateCredentials 无法进行身份验证

转载 作者:行者123 更新时间:2023-12-05 01:22:48 24 4
gpt4 key购买 nike

我正在尝试在我的 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 但没有任何运气。

有任何想法吗?

最佳答案

所以我找到了我在类似 question 上发布的解决方案.

我所做的,对我有用的是,在调用 ValidateCredentials 时,我稍微修改了用户名:

bool auth = context.ValidateCredentials(
String.Format("CN={0},CN=Kontrahenci,DC=TestApp,DC=loc",
userName),
password);

希望这可以帮助。

关于.net - ContextType.ApplicationDirectory 上的 AD LDS ValidateCredentials 无法进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6614962/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com