开辟轮询通道作为会话保持活动状态
有人遇到过这个问题吗?
我将会话超时设置为 1 分钟,效果很好。
但是,如果我以 5 秒的间隔打开消息轮询通道,则会话永远不会过期。这是预期的吗?如果是这样,如何禁用它?
使用 blazeDS 3.2,带有 spring security 3.0.5RELEASE 和 spring-flex 1.0.3。
TKS。
has any one faced this problem?
I set the session timeout to 1min, and it works fine.
But if i turn on a msg-polling channel with 5s interval, the session never expires. Is this expected? if so, how to disable this?
Using blazeDS 3.2, with spring security 3.0.5RELEASE and spring-flex 1.0.3.
TKS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是预期的行为,除非您实现某种自定义机制,否则您无法更改它。就像 Flex 应用程序中的计时器一样,如果经过一段时间而没有任何用户交互,它将调用服务器上的注销方法。
Yes it is the expected behavior, and you cannot change it unless you implement some custom mechanism. Like a timer in your Flex application, which will call a logout method on the server if an interval of time passed without any user interaction.