How do I configure the Out Of Process Session Provider? (ASP.NET - IIS7)
NickName:Alex Ask DateTime:2009-08-21T04:53:33

How do I configure the Out Of Process Session Provider? (ASP.NET - IIS7)

I'd like to experiment with the out of process session provider in ASP.NET/IIS7 (non-in memory). I understand that then a different process is taking care of my session state, so that I could restart the application domain/w3wp without losing session information.

However, how do I set this up, preferably pretty much transparent to my web application?

Thank you!

Copyright Notice:Content Author:「Alex」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/1308738/how-do-i-configure-the-out-of-process-session-provider-asp-net-iis7

More about “How do I configure the Out Of Process Session Provider? (ASP.NET - IIS7)” related questions

How do I configure the Out Of Process Session Provider? (ASP.NET - IIS7)

I'd like to experiment with the out of process session provider in ASP.NET/IIS7 (non-in memory). I understand that then a different process is taking care of my session state, so that I could resta...

Show Detail

ASP NET Core MVC - How to configure Out of Process Session State?

Is there a way to configure out of process session state (using the the Windows State server or SQL Server) with ASP.NET Core MVC?

Show Detail

How can I slowly migrate to using Redis as a Session State Provider from in process?

Is it a bad idea to implement my own session state provider that conditionally switches based on key between the redis session provider and the inproc session provider? I am working in a very large

Show Detail

How to configure local DynamoDB as ASP.NET session state provider

I have been tasked to write a proof of concept for using Amazon's DynamoDB service to store ASP.NET session state. I downloaded Amazon's local DynamoDB server from here, and got it running successf...

Show Detail

Configuring ASP.NET in IIS7

Is there a way to configure ASP.NET in IIS7? I know this must be a stupid question, but in IIS7 I see an icon for ASP. Is this configuration for Classic ASP?

Show Detail

Out of process Session state Stopped working?

I have a shopping cart, and I want the products in the cart to remain even when the application is closed and restarted. I set up out of process session state, and it actually did work(for a while...

Show Detail

How to register ASP.NET 2.0 to web server(IIS7)?

I have a web-page application already created, but when I open it in visual studio 2008, it says there that: ASP.NET 2.0 has not been registered on the Web Server. You need to manually configur...

Show Detail

How do I deploy an ASP.net custom MembershipProvider?

I've written a custom MembershipProvider that uses a custom database schema for storing the members, but I am having trouble figuring out how to deploy the provider. My target server is running II...

Show Detail

How to troubleshoot problems under ASP.NET out of process Session State

We are migrating a monolithic ASP.NET MVC web application from single server to farm under load balancer. It relies heavily on Session data, so we are moving from In Process to Out, either the ASP...

Show Detail

Does IIS7 use different default membership provider?

Say I create CreateUserWizard control and use AspNetSqlMembershipProvider (defined in machine.config) as a default membership provider. Assuming I change default provider's requiresQuestionAndAnswer

Show Detail