12

我在 .net4 上有一个 MVC3 应用程序,它的会话在开发环境中工作,但不在生产环境中。
在生产中,我记录了 sessionID,并且在我从会话中设置和获取的那一刻它是相同的。

当我尝试获取会话时,我得到了Null Exception.

这是我访问会话的方式:

public static class HandlersHttpStorage
{
    public static string TestSession
    {
        get
        {
            return HttpContext.Current.Session["time"];//This is null
        }
        set
        {
            HttpContext.Current.Session.Add("time", value);//DateTime.Now.ToString()
        }
    }
}

让我担心的是,生产中的行为与开发中的行为不同,即使 web.config 相同。

4

3 回答 3

15

解决方案1:

链接: 路由请求时 HttpContext.Current.Session 为空

知道了。相当愚蠢,实际上。在我像这样删除并添加 SessionStateModule 后它起作用了:

<configuration>
  ...
  <system.webServer>
    ...
    <modules>
      <remove name="Session" />
      <add name="Session" type="System.Web.SessionState.SessionStateModule"/>
      ...
    </modules>
  </system.webServer>
</configuration>

简单地添加它是行不通的,因为“会话”应该已经在machine.config.

现在,我想知道这是否是通常的做法。它看起来肯定不是这样,因为它看起来很粗糙......

解决方案2:

链接: HttpContext.Current.Session 空项

sessionKey 可能会发生变化,您可能只需要这样做:

HttpContext.Current.Session["CurrentUser"]

或者会话可能即将到期,请检查超时:

http://msdn.microsoft.com/en-us/library/h6bb9cz9(VS.71).aspx

或者您可能正在从其他地方设置会话值,通常我通过一个属性控制对会话/上下文对象的访问

static readonly string SESSION_CurrentUser = "CurrentUser";

public static SiteUser Create() {     
 SiteUser.Current = new SiteUser();      
 return SiteUser.Current;
}

public static SiteUser Current {     
 get {         
  if (HttpContext.Current.Session == null || HttpContext.Current.Session[SESSION_CurrentUser] == null) {             
   throw new SiteUserAutorizationExeption();         
  }          
  return HttpContext.Current.Session[SESSION_CurrentUser] as SiteUser;     
 } 
 set {
  if (!HttpContext.Current.Session == null) {
   HttpContext.Current.Session[SESSION_CurrentUser] = value;
  }
 }
} 
于 2012-05-17T04:49:25.963 回答
3

另一个可能的原因/解决方案是,如果域名有下划线,IE 不会保存 cookie(因为严格来说域名不能有下划线,所以你可能只会在开发中遇到这种情况),例如http://my_dev_server/DoesntWork. Chrome 或 Firefox 应该在这种情况下工作,如果您更改您正在使用的域名以不解决下划线问题。

参考:

于 2014-02-12T09:47:16.890 回答
0

对我来说,我发现它HttpContext.Current是空的,所以我创建了它:

System.Web.HttpContext c = System.Web.HttpContext.Current; 

然后我将它传递到我的另一个类中的函数中,如下所示:

string myString = "Something to save";
SessionExtensions.SetDataToSession<string>(c, "MyKey1", myString);

我实际上希望我的函数成为一个真正的扩展方法,Session就像下面的那样,但我发现它this HttpSessionStateBase session是空的,NullReferenceException当我尝试添加任何东西来Session使用它时,它会给出。所以这:

public static class SessionExtensions 
{ 
   /// <summary> 
   /// Get value. 
   /// </summary> 
   /// <typeparam name="T"></typeparam> 
   /// <param name="session"></param> 
   /// <param name="key"></param> 
   /// <returns></returns> 
   public static T GetDataFromSession<T>(this HttpSessionStateBase session, string key) 
   { 
       return (T)session[key]; 
   } 
   /// <summary> 
   /// Set value. 
   /// </summary> 
   /// <typeparam name="T"></typeparam> 
   /// <param name="session"></param> 
   /// <param name="key"></param> 
   /// <param name="value"></param> 
   public static void SetDataToSession<T>(this HttpSessionStateBase session, string key, object value) 
   { 
       session[key] = value; 
   } 
} 

微软在这里: https ://code.msdn.microsoft.com/How-to-create-and-access-447ada98变成了这个,而不是:

public static class SessionExtensions 
{ 
   /// <summary> 
   /// Get value. 
   /// </summary> 
   /// <typeparam name="T"></typeparam> 
   /// <param name="session"></param> 
   /// <param name="key"></param> 
   /// <returns></returns> 
   public static T GetDataFromSession<T>(HttpContext context, string key) 
   { 
        if (context != null && context.Session != null)
        {
            context.Session.Abandon();
        }

        return (T)context.Session[key];
   } 
   /// <summary> 
   /// Set value. 
   /// </summary> 
   /// <typeparam name="T"></typeparam> 
   /// <param name="session"></param> 
   /// <param name="key"></param> 
   /// <param name="value"></param> 
   public static void SetDataToSession<T>(HttpContext context, string key, object value) 
   { 
       context.Session[key] = value; 
   } 
} 

我能够像这样检索我的数据:

System.Web.HttpContext c = System.Web.HttpContext.Current;
string myString = SessionExtensions.GetDataFromSession<string>(c, "MyKey1");

而且,当然,既然HttpContext.CurrentSession现在存在,我什至可以将其简化为:

 string myString = Session["MyKey1"].ToString();

如果这是对象,您可以将对象的类型放在<string>函数中SetDataToSession()

List<string> myStringList = new List<string>();
myStringList.Add("Something to save");
SessionExtensions.SetDataToSession<List<string>>(c, "MyKey1", myStringList);

并检索它:

System.Web.HttpContext c = System.Web.HttpContext.Current;
List<string> myStringList = SessionExtensions.GetDataFromSession<List<string>>(c, "MyKey1");

或者简单地说:

List<string> myStringList = (List<string>)Session["MyKey1"];
于 2018-10-30T22:15:43.997 回答