Top "Session-state" questions

Session-state allows the retrieval of values for a given user as that user navigates through a website.

Session time out setting in ASP.Net

I have set session time out to 9 hours in web.config file something like this: “<sessionState mode="InProc" timeout="540" /&…

asp.net iis-7 iis-6 session-state session-timeout
Maintaining session in android ( application stay authenticated on the server side)

I am building a login application in android in which i am hitting a url(with username and password) upto …

android session http-headers session-state
ASP.NET session state and multiple worker processes

I need to understand something about ASP.NET session state, as it applies to IIS 7 and ASP.net 3.5. If an …

asp.net asp.net-mvc iis-7 session-state worker-process
How to save and retrieve session from Redis

I am trying to integrate Redis sessions into my authentication system written in Node.js. I have been able to …

node.js redis session-state
Disable Session state per-request in ASP.Net MVC

I am creating an ActionResult in ASP.Net MVC to serve images. With Session state enabled, IIS will only handle …

asp.net asp.net-mvc asynchronous session-state actionresult
How to use ASP.NET Session State in an HttpHandler?

I have an HttpHandler that is run on a client page (cross domain, not on our IIS server, etc) and …

httphandler session-state
How to manage state in REST

I guess this question will sound familiar, but I am yet another programmer baffled by REST. I have a traditional …

rest session-state
How to view Session Variables in Visual Studio 2008 Debugger?

Usually using Visual Studio's debugger is a breeze. Scanning through Locals quickly shows the values of variables, etc. However, I'm …

asp.net visual-studio variables debugging session-state
MVC Custom Authentication, Authorization, and Roles Implementation

Bear with me as I provide details for the issue... I've got an MVC site, using FormsAuthentication and custom service …

c# asp.net-mvc forms-authentication authorization session-state
request.getSession(false) not returning null after calling session.invalidate()

Shouldn't invalidating a session cause request.getSession(false) to return null? In my logout servlet I call session.invalidate(); and …

java jakarta-ee servlets session-state