vote up 5 vote down star

I'm getting the following error in my application:

Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

The stack trace isn't providing any good information on which object is not able to serialize. Is there a good way to find the problem child?

Edit: I've found the issue, I was trying to serialize a Linq statement(not executed). But I'll try an choose an answer that would have best solved this issue.

flag

80% accept rate
It shouldn't actually be that hard to come up with a function that recursively finds all references of an object and determine whether the anything is not marked as [Serializable]. – Dave Van den Eynde Nov 20 at 19:58
How do would you know which ones would be serialized and added to the session? – Yuriy Faktorovich Nov 20 at 20:00

3 Answers

vote up 3 vote down check

Really, you should mainly be storing your own state data / objects (ideally modelled as DTO classes), in which case the answer is: any you mark as [Serializable] or ISerializable. You shouldn't be adding raw UI controls or other unknown objects to session-state. In particular, for reasons like this, which had a major performance impact on an app the other day.

link|flag
+1 Good point and informative link. – IrishChieftain Nov 20 at 20:34
@Marc Gravell: I thought I was storing an IEnumerable<KeyValuePair<string, int>>, the problem was I was only storing the Linq clause, but in other places I was first using the ToList() extension to enumerate. – Yuriy Faktorovich Nov 20 at 21:52
vote up 2 vote down

MbUnit (now Gallio) has an Assert.IsSerializable() test that could come in handy here.

link|flag
I did create a unit test which did a binary serialization on the class I thought was the culprit. – Yuriy Faktorovich Nov 20 at 21:01
vote up 0 vote down

The best I could do in a similar situation is to look at every object the Session references and check it for the presence of the Serializable attribute (or that the object implements ISerialzable interface).

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.