SessionState "StateServer" serialization ...

  • Thread starter Thread starter Ashish
  • Start date Start date
A

Ashish

Iam trying the out of state session management for the first time,
trying to convert a big project to be adaptable to both type of session
management ..

what i see that it is trying to serialize a class which is not touched
by session object, do i have to serialize all the classes in the project
or only the ones touches, also the abstract classes ?

TIA
-ashish
 
only the objects that you store in session must be serializable. but for an
object to serialize it must also serialize all property values. So basically
no object you store in the session can have property that returns a
non-serializable object. or you must supply a serializer for that propertry.

-- bruce (sqlwork.com)
 
Hello
Ashish
this is amit
i am also implementing session mgmt (SQLServer)
in my Company..
we can share experiences if u wan t

amit
india
 
Back
Top