与 StateStitch 和 AppFabric 共享会话

发布于 2025-01-06 05:23:49 字数 431 浏览 1 评论 0原文

我们有一个使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由如风 2025-01-13 05:23:49

修好了。

StateStitch 中的硬编码声明,在 StateServer 上验证,但在 Custom 上失败。
解决方案:将“自定义”添加到

If (Mode.StateServer || Mode.Custom) { Validated = true; }

Fixed it.

A hardcoded declaration in StateStitch, validated on StateServer and failed on Custom.
Solution: Added 'Custom' to the

If (Mode.StateServer || Mode.Custom) { Validated = true; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文