gpt4 book ai didi

c# - WCF UserNamePasswordValidator 缓存

转载 作者:太空宇宙 更新时间:2023-11-03 11:18:12 30 4
gpt4 key购买 nike

我在互联网上浏览过但没有运气,我正在尝试找到一种合适的方法来在服务端缓存用户名和密码 token ,这样每次连接到服务时我都不必创建数据库连接。

这就是我要实现的目标:

public class ServiceAuth : UserNamePasswordValidator
{
public override void Validate(string userName, string password)
{
var user = Repository.Authenticate(userName, password);

if (user != null)
{
// Perform some secure caching
}
else
throw new FaultException("Login Failed");
}
}

在 C# 4.0 WCF 中使用 UserNamePasswordValidator 验证凭据时是否可以使用缓存?

如果是这样,有人可以给我一些关于如何实现这一目标的线索吗?

最佳答案

我想请求 super 用户不要删除答案,因为这可以帮助其他想要找到问题解决方案的人..!

我已经使用用于缓存的键值对字典集合实现了以下 CUSTOM 安全管理器。希望这有帮助

public class SecurityManager : UserNamePasswordValidator
{
//cacheCredentials stores username and password
static Dictionary<string, string> cacheCredentials = new Dictionary<string, string>();
//cacheTimes stores username and time that username added to dictionary.
static Dictionary<string, DateTime> cacheTimes = new Dictionary<string, DateTime>();

public override void Validate(string userName, string password)
{
if (userName == null || password == null)
{
throw new ArgumentNullException();
}
if (cacheCredentials.ContainsKey(userName))
{
if ((cacheCredentials[userName] == password) && ((DateTime.Now - cacheTimes[userName]) < TimeSpan.FromSeconds(30)))// && timespan < 30 sec - TODO
return;
else
cacheCredentials.Clear();
}
if (Membership.ValidateUser(userName, password))
{
//cache usename(key) and password(value)
cacheCredentials.Add(userName, password);
//cache username(key), time that username added to dictionary
cacheTimes.Add(userName, DateTime.Now);
return;
}
throw new FaultException("Authentication failed for the user");
}
}

关于c# - WCF UserNamePasswordValidator 缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11960487/

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