与会话状态服务器共享会话

时间:2016-03-03 21:50:28

标签: windows iis-7 cluster-computing session-state

我试图在清漆循环式平衡器之间设置两个Windowz框(win1win2)。

应用程序的会话状态都配置为"状态服务器"指向第三台机器(x.y.w.z)。从telnet x.y.w.z 42424win1调用win2即可。 Al机器具有相同的OS版本。 两台机器都具有相同的机器密钥enter image description here

我已经删除了从http://pardini.net/blog/2011/02/17/the-ultimate-asp-net-session-state-debugging-tool/复制的ans aspx调试页面,它显示了两个不同的机器密钥。

enter image description here

我可以看到AppDomainAppId不同;我怎么能改变它? 这里发生了什么?

1 个答案:

答案 0 :(得分:0)

正如Sharing session state over multiple ASP.NET applications with ASP.NET state server中所建议的那样,我在Global.aspx.cs中添加了一个钩子

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using NHibernate;
using NHibernate.Cfg;
using NHibernate.Context;
using NHibernate.Mapping.Attributes;
using System.Web.SessionState;
using System.Reflection;

/// <summary>
/// Summary description for Global
/// </summary>
public class Global : System.Web.HttpApplication
{
  public static ISessionFactory SessionFactory;

private static Configuration _configuration;

public override void Init()
{
    base.Init();
    foreach (string moduleName in this.Modules)
    {
        string appName = "MYAPPNAME";
        IHttpModule module = this.Modules[moduleName];
        SessionStateModule ssm = module as SessionStateModule;
        if (ssm != null)
        {
            FieldInfo storeInfo = typeof(SessionStateModule).GetField("_store", BindingFlags.Instance | BindingFlags.NonPublic);
            SessionStateStoreProviderBase store = (SessionStateStoreProviderBase)storeInfo.GetValue(ssm);
            if (store == null) //In IIS7 Integrated mode, module.Init() is called later
            {
                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, appName);
            }
            else
            {
                Type storeType = store.GetType();
                if (storeType.Name.Equals("OutOfProcSessionStateStore"))
                {
                    FieldInfo uribaseInfo = storeType.GetField("s_uribase", BindingFlags.Static | BindingFlags.NonPublic);
                    uribaseInfo.SetValue(storeType, appName);
                }
            }
        }
    }
}
(...)