1

我是 Ubuntu 10.04 LTS 的新手

当我运行 Web 应用程序时发生错误:

“/mywebApp”应用程序中的服务器错误

你调用的对象是空的

说明:HTTP 500。处理请求时出错。

堆栈跟踪:

System.NullReferenceException:对象引用未设置为 System.Web.SessionState.SessionInProcHandler.GetItemInternal 处的对象实例(System.Web.HttpContext 上下文,System.String id,System.Boolean& 锁定,System.TimeSpan& lockAge,System.Object& lockId, System.Web.SessionState.SessionStateActions&actions, Boolean Exclusive) [0x00000] in :0
版本信息: Mono Runtime Version: 2.10.8.1 (Debian 2.10.8.1-1~dhx1~lucid1); ASP.NET 版本:2.0.50727.1433

4

1 回答 1

1

A solution is to use out-process session state:

  1. Open a console and type "asp-state4" to start the server.
  2. Open your web.config and add under <system.web>:

    <sessionState mode="StateServer"
        stateConnectionString="tcpip=localhost:42424"
        stateNetworkTimeout="100"/>
    
于 2012-05-16T08:55:21.093 回答