Tagged Questions
The state-server tag has no wiki summary.
4
votes
1answer
1k views
Upgrade from .NET 3.0 to 3.5: Sites set to StateServer revert to InProc when in Web Garden
Scenario:
Take a server running .NET 3.0 and an ASP.NET Web site running in an application pool that has Web gardens enabled (number of processes: 3). The web.config configuration is as follows:
...
3
votes
3answers
797 views
How to avoid single point of failure when using state server in ASP.NET website
In my current project, we have to create a website (ASP.NET MVC) which is likely to have sufficient load to demand a server farm. I understand that if server farm is used, session states must be ...
3
votes
7answers
4k views
best way to share “session state” type data between two .net applications
we have a web application that, started out small, any new features that were added on, were just made as part of the same project, however now we would like to create new projects for these said ...
2
votes
1answer
360 views
Is ASP.Net State Server an elegant solution?
We have an ASP.Net MVC project that will start with a single web server but will likely soon scale into a small web farm. As ASP.Net Authentication stores a UserID, and data caching may also be ...
2
votes
4answers
424 views
Managing Session State
I have a need to maintain the session state in the database. However I cannot access the database directly from the web server. The web server communicates with an app server which in turn has access ...
1
vote
3answers
780 views
Preserve ASP.NET InProc Session when W3WP (IIS) Process Recycles
I understand that all InProc session data is always gone when its w3wp owner process recycles as it only resides in the w3wp memory.
I wondered though if it is possible to cache the session data ...