Keep getting The provider requires SessionState to be enabled on IIS 6 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T09:33:37Z http://stackoverflow.com/feeds/question/477694 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477694/keep-getting-the-provider-requires-sessionstate-to-be-enabled-on-iis-6 1 Keep getting The provider requires SessionState to be enabled on IIS 6 Morph 2009-01-25T13:40:48Z 2009-03-11T07:28:25Z <p>While trying to deploy a simple asp.net mvc project on an IIS 6 server, I keep getting this error "<strong>The provider requires SessionState to be enabled</strong>".</p> <p>To rule out that I am doing something wrong, I am now trying to deploy just the template you get when you start a new asp.net mvc solution in vs2008. And yes, I have enabled session state in IIS config, also added the <code>&lt;sessionState mode="InProc" /&gt;</code> line to web.config, but that didn't make any difference.</p> <p>Tried both the .mvc isapi mapping, as well as the wildcard mapping, and I still get the dreaded error message.</p> <p>Am I overlooking something obvious ?</p> http://stackoverflow.com/questions/477694/keep-getting-the-provider-requires-sessionstate-to-be-enabled-on-iis-6/477971#477971 3 Answer by Chad Moran for Keep getting The provider requires SessionState to be enabled on IIS 6 Chad Moran 2009-01-25T17:42:35Z 2009-01-25T17:42:35Z <p>Check your web.config and check make sure that you don't have anything disabling session state. It would look like this.</p> <pre><code>&lt;sessionState mode="Off" /&gt; </code></pre> <p>Otherwise you may want to check and make sure you have session state enabled at the IIS level by...</p> <ol> <li>Click/select your site</li> <li>In the Application Settings area select Configuration and then Options tab.</li> <li>In the Application Configuration area select Enable Session State checkbox (or make sure it's checked).</li> </ol> http://stackoverflow.com/questions/477694/keep-getting-the-provider-requires-sessionstate-to-be-enabled-on-iis-6/479429#479429 1 Answer by Morph for Keep getting The provider requires SessionState to be enabled on IIS 6 Morph 2009-01-26T11:05:50Z 2009-01-26T11:05:50Z <p>Not really an answer, but what I did was to add a new site to IIS, and let that run on port 81. It's for internal test / demo purpose, so that's not much of a problem.</p> <p>Then I set up a virtual directory as you can read from many guides out there, setup wildcard isapi rule to the .net 3.5 dll and the site was up right away.</p> <p>I now ran into the <em>The provider requires SessionState to be enabled</em> - error twice. On my testmachine at home and here at work, while deploying an mvc site to the default website in IIS 6, something must be going wrong, but can't tell you what...</p> <p>And thanks Chad for trying to help me !</p> http://stackoverflow.com/questions/477694/keep-getting-the-provider-requires-sessionstate-to-be-enabled-on-iis-6/633639#633639 0 Answer by Michel van Engelen for Keep getting The provider requires SessionState to be enabled on IIS 6 Michel van Engelen 2009-03-11T07:28:25Z 2009-03-11T07:28:25Z <p>I had the same error, but in my case it had nothing to do with sessionstate (at least, it's not the source of the problem).</p> <p>Have you set up error handling in your Global.asax file? If so, disable it for now.</p> <pre><code>protected void Application_Error(object sender, EventArgs e) { Exception exception = Server.GetLastError(); RouteData routeData = new RouteData(); routeData.Values.Add("controller", "ErrorController"); routeData.Values.Add("action", "HandleTheError"); routeData.Values.Add("error", exception); Response.Clear(); Server.ClearError(); IController errorController = new ErrorController(); errorController.Execute(new RequestContext( new HttpContextWrapper(Context), routeData)); } </code></pre> <p>After disabling this code I got an http 404 error that one of my pages could not be found. Don't forget to add the mvc extension to your links. If resolving the rootdirectory is your problem, use the function Url.Content in combination with "~/".</p>