We are porting the ASP Classic website to ASP.Net. One of the biggest hurdles is the large amount of data stored in SessionState on the ASP Classic website.
I am looking for ways to share session state between two applications. I found the following link from microsoft MSDN that describes how to share a session with a shared database. Unfortunately, it uses a binary formatter to serialize in a database, and I recently had some bad experience with the specified binary serialization.
Does anyone have any other suggestions on how to split session state? or alternatives to binary serialization?
source
share