BUG: Session Data Is Not Saved in Out-of-Process Session State (312112)



The information in this article applies to:

  • Microsoft ASP.NET (included with the .NET Framework) 1.0

This article was previously published under Q312112

SYMPTOMS

When you use SQLServer session state mode, if you try to store an instance of a class that is not marked as serializable into a session variable, the request returns without an error. However, ASP.NET actually fails to save the session data and blocks subsequent requests in the same session.

This same behavior occurs when you use StateServer session state mode, but you also receive the following run-time error:
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Runtime.Serialization.SerializationException: The type <namespace.classname> in Assembly <AssemblyName>, Version=1.0.676.30211, Culture=neutral, PublicKeyToken=null is not marked as serializable.
When session state is configured to be stored in Microsoft SQL Server, the thread that processes your request hangs, and the TempGetStateItemExclusive stored procedure in the ASPState database is called continuously with the same values in one-second increments. If session state is set to InProc, everything works as expected.

CAUSE

This problem occurs because the class is not marked as serializable.

RESOLUTION

To resolve this problem, add the [Serializable] attribute to mark the class as serializable. For example, use the following Microsoft Visual C# .NET code:
[Serializable]
public class MyClass
{
  //class code
}
				
Or use the following Microsoft Visual Basic .NET code:
<Serializable()> _
   Public Class MyClass
     'Class code
   End Class
				
Note If the class uses other classes, you must mark each class as serializable. The problem in this article also occurs with some Microsoft .NET Framework classes such as the XmlDocument class. These classes cannot be marked as serializable, so the error will still occur.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.
This bug was fixed in ASP.NET (included with the .NET Framework) 1.1.

Modification Type:MinorLast Reviewed:8/3/2003
Keywords:kbbug kbnofix kbreadme kbState KB312112 kbAudDeveloper