How to monitor the ASP.NET State Service?

A

AndreasGosch

Hi, i have a ASP.NET MVC Application running on Windows Server and i use the StateServic to store the session information. Now there is my question is there monitoring solution to look inside the State Service to see which sessions are currently active? I have not anything on Google. I just want to make sure that my setup works and really uses the State Service and In-Process. My web.config looks like this:

<configuration>
<system.webServer>
<handlers>
<add name="httpplatformhandler" path="*" verb="*" modules="httpPlatformHandler" resourceType="Unspecified" />
</handlers>
<httpPlatform processPath="..\approot\web.cmd" arguments="" stdoutLogEnabled="false" stdoutLogFile="..\logs\stdout.log" startupTimeLimit="3600"></httpPlatform>
</system.webServer>
<system.web>
<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" stateNetworkTimeout="20" timeout="240">
</sessionState>
</system.web>
</configuration>

I'm only asking because for testing purposes i deactivated the StateService and my Site still worked or is there a fallback?

Best Regards

Continue reading...
 
Back
Top Bottom