这将是我的第一个问题!
我的mvc4应用程序和随机发生的注销问题。
我使用会话来存储我的公司ID和用户ID。
private void SetSessionData(string UserName)
{
Employee data = (from employee in _db.Employees where employee.Email == UserName select employee).First();
Session.Add("Comp_ID", data.Comp_ID);
Session.Add("Company", data.Company.Name);
Session.Add("User_ID", data.ID);
}
我已将会话的超时值设置为600(10小时),这甚至可以设置为2个位置:
[AllowAnonymous]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{
//FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe); //sørger for at remember me virker!
SetSessionData(model.UserName);
Session.Timeout = 600;
if (model.RememberMe)
{
Response.Cookies.Add(new HttpCookie("CookieUserName", model.UserName) { Expires = DateTime.Now.AddDays(30), Value = model.UserName });
Response.Cookies.Add(new HttpCookie("CookieRememberMe", model.RememberMe.ToString()) { Expires = DateTime.Now.AddDays(30), Value = model.RememberMe.ToString() });//sætter den nye cookie
}
else
{
Response.Cookies.Set(new HttpCookie("CookieUserName") { Expires = DateTime.Now.AddDays(-1) });
Response.Cookies.Set(new HttpCookie("CookieRememberMe") { Expires = DateTime.Now.AddDays(-1) });
}
if (string.IsNullOrEmpty(returnUrl))
{
return RedirectToLocal(returnUrl);
}
return RedirectToAction("Index", "Home");
}
// If we got this far, something failed, redisplay form
ModelState.AddModelError("", "Vi har enten ikke brugernavnet eller koden i kartoteket.");
return View(model);
}
在web.config中:
<system.web>
<machineKey validationKey="MyKeyGoesHere" validation="SHA1" decryption="AES" />
<sessionState timeout="600" />
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>
<httpRuntime targetFramework="4.5" />
<authentication mode="Forms">
<forms loginUrl="~/Account/Login" timeout="600" />
</authentication>
我的Cookie似乎保存了10个小时,而我的session_id Cookie过期似乎设置为“浏览器关闭时”。
服务器端我已将应用程序池设置为在凌晨1点回收。
即使设置了所有这些,我的用户仍然可以在登录后2分钟到登录后1小时之间随机注销。
来解决我曾经包含过的一些随机半登录状态问题:
@if(Session == null || Session["User_ID"] == null || !WebSecurity.Initialized){
//Makes sure the session data is cleared and user logged out if session dies.
try
{
if(Session != null) {Session.Clear();}
if (WebSecurity.Initialized){WebSecurity.Logout();}
FormsAuthentication.SignOut();
//dette er til at stoppe cache.
Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();
}catch{ <p>Error Clearing Login Cache</p>}
}
我现在很迷茫,并希望那里的大师可能知道初学者在这里犯错误!
提前感谢所有回复!
编辑:
我也试过这个:http://www.windowsitpro.com/article/security-development/create-persistent-id-cookies
(来自:ASP.NET MVC FormsAuthentication Cookie timeout cannot be increased的原始链接)
但是这只是在我登录后每次按下任何东西时都让我的应用程序注销。
该应用程序在带有IIS8的Windows 2012服务器上运行。
更多补充:
我发现在浏览器中关闭时,session_id cookie仍然设置为:
cloud.hviidnet.com/image/2X3v2y2e1K1S
奇怪的是它设置为600分钟,即使我查看IIS服务器:
cloud.hviidnet.com/image/1e3J1g2u3p2M
答案 0 :(得分:1)
解决方案是删除所有使用“会话”。并使用WebSecurity.CurrentUserID获取数据库中的所有数据。
希望这有助于其他人!
答案 1 :(得分:0)
您只有一台网络服务器吗?如果您有多个服务器负载平衡,会话可能会丢失,因为用户被发送到帖子之间的不同服务器,这可以解释为什么它会以随机间隔发生。