2

我有两个网站共享一个 App Pool .Net V4.0 Integrated
一个站点是ASP.NET MVC 4,另一个是VB.NET Website

它们通过在以下内容中共享登录信息和服务器会话web.config

<authentication mode="Forms">
  <forms loginUrl="http://www.example.com/login.aspx" name=".MYCUSTOMAUTH" protection="All" path="/" domain=".example.com" timeout="30" />
</authentication>
<httpCookies domain=".example.com" />
<sessionState mode="StateServer" stateConnectionString="tcpip=loopback:42424" />
<machineKey validationKey="XXX" decryptionKey="XXX" validation="SHA1" />

我还Application_Start使用以下命令在 global.asax 中设置应用程序名称:

FieldInfo runtimeInfo = typeof(HttpRuntime).GetField("_theRuntime", BindingFlags.Static | BindingFlags.NonPublic);
HttpRuntime theRuntime = (HttpRuntime)runtimeInfo.GetValue(null);
FieldInfo appNameInfo = typeof(HttpRuntime).GetField("_appDomainAppId", BindingFlags.Instance | BindingFlags.NonPublic);
appNameInfo.SetValue(theRuntime, "MyApplicationName");

位于www.example.com显示登录屏幕的主站点,在正确登录时创建对象会话并将用户重定向到subdomain.example.com
问题是 Worker 线程只是无限期地挂起,使每个线程最大化。当我昨晚 6:00 离开时,此设置正常工作,但当我今天早上 9:00 尝试登录时,它并没有停止工作。

我重新部署了这两个站点,回收了应用程序池,删除并创建了新的应用程序池,重新启动了 ASP.NET 状态服务。一切都在重新启动整个 IIS 服务,这在周日凌晨 3:00 之前并不是一个真正的选择......
此外,即使重新启动 IIS 服务器可以暂时解决问题,如果问题继续。

此外,除非我手动结束该过程,否则服务器永远不会使连接超时,并且事件日志中不会产生任何错误或警告。

4

1 回答 1

0

他们确实需要在同一个应用程序池中才能共享会话信息如果您尝试回收应用程序池后是否立即挂起?

您需要确定导致它挂起的操作 - (例如,在任一站点上单击登录按钮)。你为什么使用customauth而不是forms auth?

于 2013-11-01T12:12:46.653 回答