问题与手动实例化的SessionState提供程序
我正在开发一个原型程序,它应该为ASP.NET测试不同的(SessionState,Profile等)提供程序,即MySQL,Oracle等。目前我正在使用MySQL提供程序。 我刚刚设法实例化提供程序,SessionStateContainer和SessionState本身。
Type mySqlType = Type.GetType("MySql.Web.SessionState.MySqlSessionStateStore, MySql.Web, Version=6.6.4.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d", true, true);
SessionStateStoreProviderBase provider = (SessionStateStoreProviderBase)Activator.CreateInstance(mySqlType);
System.Collections.Specialized.NameValueCollection providerConfig = new System.Collections.Specialized.NameValueCollection();
providerConfig.Add("connectionStringName", "LocalMySqlServer");
providerConfig.Add("applicationName", "/");
providerConfig.Add("autogenerateschema", "True");
providerConfig.Add("enableExpireCallback", "False");
provider.Initialize("MySqlSessionStateProvider", providerConfig);
HttpContext context = new HttpContext(
new HttpRequest("fake", "http://localhost:14359", ""),
new HttpResponse(new StringWriter()));
SessionStateStoreData storeData = provider.CreateNewStoreData(context, 100);
System.Web.SessionState.HttpSessionStateContainer sessionStateContainer =
new System.Web.SessionState.HttpSessionStateContainer(
"mySession",
storeData.Items,
storeData.StaticObjects,
100,
true,
System.Web.HttpCookieMode.UseDeviceProfile,
SessionStateMode.Custom,
false
);
Type sessionStateType = Type.GetType("System.Web.SessionState.HttpSessionState, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a");
HttpSessionState sessionState =
(HttpSessionState)sessionStateType
.GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance, null, new Type[] { typeof(IHttpSessionState) }, null)
.Invoke(new object[] { ssessionStateContainer });
provider.InitializeRequest(context);
在我创建的会话中,一切似乎都能正常工作,因为我可以编写一些值,并且可以从那里读取它们:
sessionStateContainer.Add("SomeKey", "SomeValue");
var test = sessionStateContainer["SomeKey"];
Console.WriteLine("var test: " + test.ToString()); // outputs "var test: SomeValue"
sessionState.Add("AnotherKey", "SomeOtherValue");
var test2 = sessionState["AnotherKey"];
Console.WriteLine("var test2: " + test2.ToString()); // outputs "var test2: SomeOtherValue"
// End the request
provider.EndRequest(context);
这里有一个有趣的部分 - 当我检查DB中的my_aspnet_sessions
表时,那里没有任何内容。
所以我想知道数据写在哪里,或者我做错了什么?
更新:
即使这个问题不再是阻碍者,我仍然很想知道,如果有人愿意尝试,下面是我使用的connectionString
:
<connectionStrings>
<remove name="LocalMySqlServer" />
<add name="LocalMySqlServer" connectionString="server=localhost;database=session_test;User Id=user;password=pass" providerName="MySql.Data.MySqlClient" />
</connectionStrings>
你还需要MySQL Connector NET。
您看不到数据库中的数据,因为SessionStateModule会等待请求结束以调用SetAndReleaseItemExclusive命令。 数据保存在内存中,直到调用此命令。 事实上,文件指出:
SessionStateModule对象在请求结束时,在ReleaseRequestState事件期间调用SetAndReleaseItemExclusive方法,以将当前会话项信息插入数据存储或使用当前值更新数据存储中的现有会话项信息,以更新到期时间在项目上,并释放对数据的锁定。 只有当前应用程序的会话数据与所提供的会话ID和lockId值相匹配才会更新。 有关锁定的更多信息,请参阅SessionStateStoreProviderBase类概述中的“锁定会话存储数据”。
为了进一步深入细节,您可以查看单声道代码库中的相关文件。
鉴于此,要在数据库中查看会话数据,您应该执行如下操作:
object storeLockId = new object();
sessionStateContainer.Add("SomeKey", "SomeValue");
var test = sessionStateContainer["SomeKey"];
Console.WriteLine("var test: " + test.ToString());
sessionState.Add("AnotherKey", "SomeOtherValue");
var test2 = sessionState["AnotherKey"];
Console.WriteLine("var test2: " + test2.ToString());
// End the request
provider.SetAndReleaseItemExclusive (context, sessionStateContainer.SessionID,
storeData, storeLockId, true);
provider.EndRequest(context);
在你的web.config中,你需要设置mode =“custom”
<sessionState mode="Custom" customProvider="YourProvider">
否则,无论提供者如何,会话数据都将存储在内存中。
链接地址: http://www.djcxy.com/p/12609.html上一篇: Issue with a manually instantiated SessionState provider