与 StateStitch 和 AppFabric 共享会话
我们有一个使用 ASP 和 ASP.NET 的应用程序。我们使用 StateStitch 进行会话共享,并使用状态服务器设置来持久(缓存)会话。
现在我们要使用 AppFabric 实现高可用性和分布式缓存。
唯一的问题是:AppFabric 需要
而 StateStitch 需要 <...mode="StateServer">
(web.xml 中的标记) config)
你们中有人知道如何从这里继续前进吗?似乎无法将 AppFabric 实现为 //typeof(StateServer) 并且似乎无法使 StateStitch 接受自定义设置。
任何想法,最好利用上述技术之一/两者...... 寻找免费的解决方案:-)
We have an application with ASP and ASP.NET. We use StateStitch for the session sharing and stateserver setup for persisting (caching) sessions.
Now we want to implement High Availability and distributed caching, using AppFabric.
Only problem is: AppFabric requires <sessionState mode="custom">
and StateStitch requires <...mode="StateServer">
(tag in web.config)
Do any of you have any idea on how to go forward from here? Can't seem to implement AppFabric as //typeof(StateServer) and can't seem to make StateStitch accept custom setup.
Any thoughts, preferably utilizing one/both of the above mentioned techs...
Looking for the free solution :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
修好了。
StateStitch 中的硬编码声明,在 StateServer 上验证,但在 Custom 上失败。
解决方案:将“自定义”添加到
Fixed it.
A hardcoded declaration in StateStitch, validated on StateServer and failed on Custom.
Solution: Added 'Custom' to the