- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了用户在填写申请表时丢失 session 数据的问题。看来他们在申请表中途丢失了 session 状态。 (ASP.NET 4.0 WebForms 项目,IIS 6.0)
session 存储在状态服务器的进程外,因此它不是配置更改、应用程序域回收等 AFAIK。
<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" timeout="20" />
我正在使用表单例份验证,滑动过期工作正常,您可以从下面的日志记录中看到 - 您可以看到票证过期时间是正确的,并且按预期延长。
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" />
</authentication>
我启用了一些自定义日志记录来尝试追踪此问题。每 Session_Start
火灾global.asax
我会记录一些内容,每次有人加载申请表或单击“下一步”在各部分(在多 View 中)之间移动时,我也会记录一些内容,因为他们浏览应用程序表单。
以下是人们失去 session 状态的两个示例。日志以日志条目的日期/时间开始,然后是一些措辞。括号中的第二个日期/时间(在措辞之后)是源自 CType(ctx.User.Identity, FormsIdentity).Ticket.Expiration.ToString
的 FormsAuthentication cookie 的到期日期/时间。
日志记录还记录用户的 IP 地址和 session ID。在将它们粘贴到此处之前,我已将其删除,我可以确认所有日志条目的 IP 地址和 session ID 都是相同的。
示例1:
**[26/10/2010 13:07] Session started []**[26/10/2010 13:11] Application form first Page_Load [26/10/2010 13:31:19][26/10/2010 13:13] App form next clicked, current index is 1 (vwSection1) [26/10/2010 13:31:19][26/10/2010 13:14] App form next clicked, current index is 2 (vwSection2) [26/10/2010 13:31:19][26/10/2010 13:15] App form next clicked, current index is 3 (vwSection3) [26/10/2010 13:31:19][26/10/2010 13:20] App form next clicked, current index is 5 (vwSection4) [26/10/2010 13:31:19][26/10/2010 13:20] App form next clicked, current index is 6 (vwSection5) [26/10/2010 13:31:19][26/10/2010 13:20] App form next clicked, current index is 7 (vwMonitoring) [26/10/2010 13:31:19][26/10/2010 13:21] App form next clicked, current index is 8 (vwInformation) [26/10/2010 13:31:19][26/10/2010 13:22] Application form first Page_Load [26/10/2010 13:41:22][26/10/2010 13:25] App form next clicked, current index is 1 (vwSection1) [26/10/2010 13:41:22][26/10/2010 13:26] App form next clicked, current index is 2 (vwSection2) [26/10/2010 13:41:22][26/10/2010 13:26] App form next clicked, current index is 3 (vwSection3) [26/10/2010 13:41:22][26/10/2010 13:28] App form next clicked, current index is 5 (vwSection4) [26/10/2010 13:41:22][26/10/2010 13:28] App form next clicked, current index is 6 (vwSection5) [26/10/2010 13:41:22][26/10/2010 13:28] App form next clicked, current index is 7 (vwMonitoring) [26/10/2010 13:41:22][26/10/2010 13:28] App form next clicked, current index is 8 (vwInformation) [26/10/2010 13:41:22]**[26/10/2010 13:28] Session started [26/10/2010 13:41:22]**[26/10/2010 13:31] Application form first Page_Load [26/10/2010 13:51:24][26/10/2010 13:31] App form next clicked, current index is 1 (vwSection1) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 2 (vwSection2) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 3 (vwSection3) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 5 (vwSection4) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 6 (vwSection5) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 7 (vwMonitoring) [26/10/2010 13:51:24][26/10/2010 13:32] App form next clicked, current index is 8 (vwInformation) [26/10/2010 13:51:24]
Example 2:
**[24/10/2010 17:44] Session started []**[24/10/2010 17:50] Application form first Page_Load [24/10/2010 18:10:13][24/10/2010 18:00] App form next clicked, current index is 1 (vwSection1) [24/10/2010 18:20:40]**[24/10/2010 18:07] Session started [24/10/2010 18:20:40]**[24/10/2010 18:08] App form next clicked, current index is 2 (vwSection2) [24/10/2010 18:20:40][24/10/2010 18:10] App form next clicked, current index is 2 (vwSection2) [24/10/2010 18:20:40][24/10/2010 18:10] App form next clicked, current index is 1 (vwSection1) [24/10/2010 18:30:42][24/10/2010 18:10] App form next clicked, current index is 1 (vwSection1) [24/10/2010 18:30:52][24/10/2010 18:10] App form next clicked, current index is 1 (vwSection1) [24/10/2010 18:30:58][24/10/2010 18:12] Application form first Page_Load [24/10/2010 18:31:35][24/10/2010 18:12] App form next clicked, current index is 1 (vwSection1) [24/10/2010 18:31:35][24/10/2010 18:13] App form next clicked, current index is 2 (vwSection2) [24/10/2010 18:31:35][24/10/2010 18:13] App form next clicked, current index is 2 (vwSection2) [24/10/2010 18:31:35][24/10/2010 18:16] App form next clicked, current index is 3 (vwSection3) [24/10/2010 18:31:35][24/10/2010 18:16] App form next clicked, current index is 5 (vwSection4) [24/10/2010 18:31:35][24/10/2010 18:17] App form next clicked, current index is 6 (vwSection5) [24/10/2010 18:31:35][24/10/2010 18:18] App form next clicked, current index is 7 (vwMonitoring) [24/10/2010 18:31:35][24/10/2010 18:18] App form next clicked, current index is 8 (vwInformation) [24/10/2010 18:31:35]
You can see in the first example that the session originally started at 13:07 but was also started at 13:28.
You can see in the second example that the session originally started at 17:44 and was restarted at 18:07.
I understand that these times are 20 minutes after the session started. But the session was not idle. You can see it was not idle because of the rest of the log. Clicking "Next" in the application form gets something an object out of session state
Dim m As Member = StateManager.CurrentMember
然后获取/设置“m”的属性。
所以,对我来说,即使用户没有空闲并访问他们的 session 变量,他们仍然会在开始后 20 分钟丢失 session 。请注意,在我的基本页面(所有页面均继承自该基本页面,基本页面继承 System.Web.UI.Page)中,我现在已开始将当前毫秒写入 session 状态,因此我不断写入 session 。
用户正在丢失 session 状态,因为 StateManager.CurrentMember(即 HttpContext.Current.Session("CurrentMember")
)返回 null。当我尝试将其附加到 Entity Framework 数据上下文时,这会给出未处理的异常 - 因此用户会看到我的通用错误处理页面。
任何想法表示赞赏。
最佳答案
您提到您正在使用 FormsAuthentication。您是否将滑动过期属性设置为 true?
http://msdn.microsoft.com/en-us/library/1d3t3c61(v=VS.100).aspx
关于asp.net - session 在 20 分钟后过期 : Whether idle or not,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4024208/
是否为每个 Shiny session 分配了 session ID/ session key (如果部署在 Shiny 服务器上)?如果是,我如何访问该信息?我已阅读文档here然而上网查了一下,并
我正在使用 this koajs session 模块。 我检查了源代码,但我真的无法理解。 我想知道它保存 session 数据的位置,因为我没有看到创建的文件,并且当服务器重新启动时, sessi
实现高可扩展性的一种方法是使用网络负载平衡在多个服务器之间分配处理负载。 这种方法提出的一个挑战是服务器是否具有状态意识 - 将用户状态存储在“ session ”中。 此问题的一个解决方案是“粘性
在负载平衡服务器的上下文中, session 亲和性和粘性 session 之间有什么区别? 最佳答案 我见过这些术语可以互换使用,但有不同的实现方式: 在第一个响应中发送 cookie,然后在后续响
我希望其他人向我解释哪种方法更好:使用 session 或设计无 session 。我们正在开始开发一个新的 Web 应用程序,但尚未决定要遵循什么路径。 无 session 设计在我看来更可取: 优
现在用户在他的权限中有很多角色,我将允许他点击 href 并在新窗口中扮演另一个角色。每个角色都有自己的 session 。 既然浏览器打开窗口不能用新 session 打开,我必须在服务器端想办法。
我正在尝试为express.js Node 应用程序实现 session 存储我的问题是: 如何删除具有浏览器 session 生命周期的 cookie(根据连接文档标记有 expires = fal
在开始在 golang 中使用 session 之前,我需要回答一些问题 session 示例 import "github.com/gorilla/sessions" var store = ses
我读过 Namespaced Attributes . 我尝试使用此功能: #src/Controller/CartController.php public function addProduct(
我正在努力完成以下工作: 根据用户的类型更改用户的 session cookie 到期日期。 我有一个 CakePHP Web 应用程序,其中我使用 CakePHP session 创建了我的身份验证
这是我在这里的第一个问题,我希望我做对了。 我需要处理一个 Java EE 项目,所以在开始之前,我会尝试做一些简单的事情,看看我是否能做到。 我坚持使用有状态 session Bean。 这是问题:
ColdFusion session 与 J2EE session 相比有什么优势吗? ColdFusion session documentation提到了 J2EE session 的优点,但没有
在执行任何任务之前,我需要准确地在创建 session 时创建一个 session 范围变量(因为我的所有任务都需要一个初始 session 范围变量才能运行)。因为,创建 session 时,gra
我们当前的应用使用 HTTP session ,我们希望将其替换为 JWT。 该设置仅允许每个用户进行一次 session 。这意味着: 用户在设备 1 上登录 用户已在设备 1 上登录(已创建新 s
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
假设我在两个或更多设备上打开了两个或更多用户 session (同一用户没有管理员权限)。 在当前 session 中,如果我注销,是否意味着所有其他 session 也会关闭?如果没有,有没有办法通
我正在评估在 tomcat 中使用带有 session 复制的粘性 session 的情况。根据我的初步评估,我认为如果我们启用 session 复制,那么在一个 tomcat 节点中启动的 sess
我开始使用 golang 和 Angular2 构建一个常规的网络应用程序,最重要的是我试图在 auth0.com 的帮助下保护我的登录.我从 here 下载快速入门代码并尝试运行代码,它运行了一段时
我在 Spring Controller 中有一个方法,它接受两个相同类型的参数其中一个来自 session ,另一个来自表单提交(UI)。 问题是在 Controller 方法中我的非 sessio
在我登录之前,我可以点击我的安全约束目录之外的任何内容。如果我尝试转到安全约束目录内的某个位置,它会将我重定向到表单登录页面。如您所料。 登录后,我可以继续我的业务,并访问我的安全约束内外的资源。
我是一名优秀的程序员,十分优秀!