Top "Session-state" questions

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

If REST applications are supposed to be stateless, how do you manage sessions?

I'm in need of some clarification. I've been reading about REST, and building RESTful applications. According to wikipedia, REST itself …

rest session-state
How to check if a user is logged-in in php?

I'm pretty new to php and I am trying to figure out how to use sessions to check and see …

php session login session-state
What is the difference between SessionState and ViewState?

What is the difference between SessionState and ViewState in ASP.NET?

asp.net session-state viewstate
Unable to make the session state request to the session state server

Our site is currently having this problem. Basically it only happen when we click some particular links where it will …

asp.net session-state stateserver
In ASP.NET, when should I use Session.Clear() rather than Session.Abandon()?

Both Session.Clear() and Session.Abandon() get rid of session variables. As I understand it, Abandon() ends the current session, …

asp.net .net session session-state
Saving data to session in JSF

I am new to the world of J(2)EE and web app development but am quickly navigating my way around …

jsf session-state session-variables
Sharing sessions across applications using the ASP.NET Session State Service

I am trying to share sessions between two web applications, both hosted on the same server. One is a .net 2.0 …

c# asp.net asp.net-mvc session-state
Detecting Session expiry on ASP.NET MVC

I have built a shopping cart that uses Session State to keep the shopping cart data while the user is …

c# asp.net asp.net-mvc session session-state
Can I access session state from an HTTPModule?

I could really do with updating a user's session variables from within my HTTPModule, but from what I can see, …

asp.net session-state httpmodule