2016-03-03 115 views
0

我想清漆循环赛loab平衡器之间创建了两个Windowz箱(win1win2)。为应用程序共享会话使用会话状态服务器

会话状态两者配置为“状态服务器”指点三分之一机(x.y.w.z)上。调用telnet x.y.w.z 42424是来自win1win2确定。 铝机器具有相同的操作系统版本。 两台机器都有相同的机器密钥enter image description here

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

enter image description here

我可以看到,AppDomainAppId不同;我该如何改变它? 这里发生了什么?

回答

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); 
       } 
      } 
     } 
    } 
} 
(...)