Does SOSS Support MVC?

admin

Administrator
#1
ScaleOut StateServer's ASP.NET Session Provider supports both MVC applications and web-forms based ASP.NET applications. There is no difference in the way these two types of ASP.NET applications use the session state provider.

If you encounter problems using ScaleOut's session provider, verify that the element is defined inside the element in the application's web.config file and is configured to use ScaleOut's custom session provider. For example:

Code:
<sessionState mode="Custom" customProvider="SossStoreProvider" cookieless="UseCookies" >
              <providers>
                 <add name="SossStoreProvider"
                      type="Soss.Web.SossStoreProvider, soss_storeprovider, Version=5.0.0.0, Culture=neutral, PublicKeyToken=a1ec0b86f746a476" />
              </providers>
</sessionState>
Also, verify that no other web.config files lower down in your application's directory structure are overriding the application's configuration.
 
Top