We are a group working on a web form application. We have set the application sessionState mode to StateServer in web.config file.
<sessionState mode="StateServer" timeout="40" stateConnectionString="tcpip=localhost:42424" cookieless="false"></sessionState>
But for two of us when we try to run the application we are getting this exception :
Unable to make the session state request to the session state server. Please ensure that the ASP.NET State service is started and that the client and server ports are the same. If the server is on a remote machine, please ensure that it accepts remote requests by checking the value of HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\aspnet_state\Parameters\AllowRemoteConnection. If the server is on the local machine, and if the before mentioned registry value does not exist or is set to 0, then the state server connection string must use either 'localhost' or '127.0.0.1' as the server name.
We are using .NET Framework 4.0. The process ASP .NET State Service is running on the default port 42424.
Somebody know what is wrong ?
Thanks for any advice.