如何确保同一服务器上托管的应用程序之间不共享会话状态

发布于 2024-10-22 05:19:06 字数 708 浏览 0 评论 0 原文

我的问题与以下问题相反
使用以下命令在 2 个 ASP.NET 应用程序之间共享会话状态SQL服务器如何维护ASP.NET 中的多个 Web 应用程序具有相同的会话 ID

我们的应用程序使用状态服务器来存储会话信息,并且我们经常希望在同一 Web 服务器上托管同一应用程序的多个版本。

目前,由于 ASP.NET_SessionId cookie 未存储在任何路径中,因此如果我访问 http://donkey.com/app1 并启动一个新会话,然后,在同一个浏览器会话中,转到 http://donkey.com/app2,我从 app1 继承会话 ID(以及会话状态)。

有没有办法诱使 ASP.Net 在存储会话 ID cookie 时设置路径,从而打破这种不必要的会话状态共享?

My question is the opposite of the following
Sharing session state between 2 ASP.NET applications using SQL Server
and
How to maintain the same session id across multiple web applications in ASP.NET.

Our application uses state server to store session info and we often want to host several versions of the same application on the same web server.

At the moment, because the ASP.NET_SessionId cookie is not stored against any path, if I got to http://donkey.com/app1 and start a new session and then, in the same browser session, go to http://donkey.com/app2, I inherit the session ID (and thus session state) from app1.

Is there a way to cajole ASP.Net to set the path when it stores the session ID cookie and thus break this unwanted sharing of session state?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

过度放纵 2024-10-29 05:19:06

您必须使用不同的 cookieName 对于 web.config 中的每个 Web 应用程序。

默认值为“ASP.NET_SessionId”。

您也可以通过编程方式进行设置。查看这篇文章

You'll have to use different cookieName for each web application in web.config.

The default is "ASP.NET_SessionId".

You can also programmatically set it. Check this post.

你的笑 2024-10-29 05:19:06

您可以使用子域来实现此目的。例如 http://app1.donkey.comhttp://app2.donkey.com。默认情况下 - cookie 不跨域共享。

另一种方法是以编程方式设置 cookie 名称,该名称可能基于某些配置值,该配置值确定您正在使用哪个版本。

You can use subdomains to achieve this. like http://app1.donkey.com and http://app2.donkey.com. By default - cookies are not shared across domains.

Another way to do it is set the cookie name programmatically may be based on some config value which determines which version you are using.

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