E
ewolfman
Hi all,
Recently I've learned of the ability to store Session data outside the
worker process (WP), for instance the ability to use the ASP.NET State
Service (aspnet_state.exe). This is great, because when the WP
terminates or performs scavenging etc', the Session state remains
untouched.
I have data which is at *application* level, and I wish to be able to
persist that data, just like I described regarding the Session
persistance.
I had several options in mind. The first is to use the Cache, but it is
unreliable; The second is to use the HttpApplication, which is also
unreliable. I can always persist the data to a database or the like,
but I was looking for a "built-in" ASP.NET solution, just like the
ASP.NET's State Service.
BTW: A simple webform which stores data on both the Session &
Application, using the State Service, and terminating the WP using Task
Manager, resulted in the Session state being stored (and "restored")
successfully, unlike the Application - so this solution serves only
Sessions.
Thanks.
Recently I've learned of the ability to store Session data outside the
worker process (WP), for instance the ability to use the ASP.NET State
Service (aspnet_state.exe). This is great, because when the WP
terminates or performs scavenging etc', the Session state remains
untouched.
I have data which is at *application* level, and I wish to be able to
persist that data, just like I described regarding the Session
persistance.
I had several options in mind. The first is to use the Cache, but it is
unreliable; The second is to use the HttpApplication, which is also
unreliable. I can always persist the data to a database or the like,
but I was looking for a "built-in" ASP.NET solution, just like the
ASP.NET's State Service.
BTW: A simple webform which stores data on both the Session &
Application, using the State Service, and terminating the WP using Task
Manager, resulted in the Session state being stored (and "restored")
successfully, unlike the Application - so this solution serves only
Sessions.
Thanks.