Tagged Questions

A Session refers to all the requests that a single client makes to a server. A session is specific to the user and for each user a new session is created to track all the request from that user.

learn more… | top users | synonyms (1)

76
votes
7answers
85k views

How do I expire a PHP session after 30 minutes?

I need to keep a session alive for 30 minutes and then destroy it.
54
votes
5answers
5k views

Can you help me understand this? “Common REST Mistakes: Sessions are irrelevant”

Disclaimer: I'm new to the REST school of thought, and I'm trying to wrap my mind around it. So, I'm reading this page, Common REST Mistakes, and I've found I'm completely baffled by the section on ...
38
votes
4answers
20k views

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, and causes a new session to be created thus causing the End and Start ...
34
votes
3answers
25k views

NHibernate - Difference between session.Merge and session.SaveOrUpdate?

I noticed sometimes with my parent/child objects, or many-to-many relationships, I need to call either SaveOrUpdate, or Merge. Usually, when I need to call SaveOrUpdate, the exception I get on calling ...
32
votes
3answers
395 views

The dreaded 'keep me logged in' and session checking

So, I know this has been done to death but all the answers I've come across have been extremely confusing/contradicting each other or their explanations have been incomplete and I'm trying to keep up ...
32
votes
6answers
25k views

Session variables in ASP.NET MVC

I am writing a web application that will allow a user to browse to multiple web pages within the website making certain requests. All information that the user inputs will be stored in an object that ...
28
votes
5answers
6k views

How to properly handle session and access token with Facebook PHP SDK 3.0?

In the PHP 3.0 SDK there is no getSession() or any session handling from outside the Facebook api available. Some days ago the developers of facebook have also somehow updated the JavaScript sdk, ...
27
votes
8answers
542 views

Hashing a session fingerprint really necessary?

Please read this THOUROUGHLY before voting... So I have seen a lot of session management classes that create a fingerprint via concatenation of user agent and a couple of ip blocks or whatever. They ...
27
votes
6answers
21k views

PHP: Storing 'objects' inside the $_SESSION

I just figured out that I can actually store objects in the $_SESSION and I find it quite cool because when I jump to another page I still have my object. Now before I start using this approach I ...
26
votes
2answers
1k views

Is HTTPS the only defense against Session Hijacking in an open network?

So with Firesheep, everyone in a public Wi-Fi now has a one-click session hijack tool. The way it works - to my understanding - is that it simply captures all traffic and grabs the session cookie (so ...
26
votes
3answers
10k views

Firefox session cookies

Generally speaking, when given a cookie that has no expiration period, modern browsers will consider this cookie to be a 'session cookie', they will remove the cookie at the end of the browsing ...
26
votes
5answers
3k views

Why does HttpServlet implement Serializable?

In my understanding of Servlet, the Servlet will be instantiated by the Container, his init() method will be called once, and the servlet will live like a singleton until the jvm is shut down. i do ...
26
votes
6answers
7k views

ASP/NET MVC: Test Controllers w/Sessions? Mocking?

I read some of the answers on here re: testing views and controllers, and mocking, but I still can't figure out how to test an ASP.NET MVC controller that reads and sets Session values (or any other ...
25
votes
2answers
12k views

Rails Sessions current practices (especially for rails 3)

Anyone have any "best practices" tips for Rails and sessions? The default session type for Rails3 is still cookie store, right? I used SqlSessionStore for a while and it worked well, but I may move ...
24
votes
1answer
291 views

Replacing ASP.Net's session entirely

ASP.Net session appear perfect for a traditional WebForms app, but they do some things that are a serious problem for a modern AJAX and MVC application. Specifically there are only 3 ways to access ...
24
votes
3answers
5k views

Issues with PHP 5.3 and sessions folder

I recently upgraded to PHP 5.3 and since then I get (sporadic) error messages which indicate Apache (or may be the cleaner of the session files) has no permissions to the folder where the sessions are ...
23
votes
13answers
14k views

Session lost when switching from HTTP to HTTPS in PHP

When sending the user to a checkout page, they are switched from http://mysite.com to https://mysite.com. As a result, $_SESSION variables are lost. The site has a valid SSL certificate which may or ...
22
votes
8answers
20k views

What is the proper way to re-attach detached objects in Hibernate?

I have a situation in which I need to re-attach detached objects to a hibernate session, although an object of the same identity MAY already exist in the session, which will cause errors. Right now, ...
21
votes
6answers
583 views

What will web developers have to do to meet the new EU cookie law?

http://www.bbc.co.uk/blogs/thereporters/rorycellanjones/2011/03/cookie_madness_or_consumer_pro.html Basically it says that from May 25th this year, any website using cookies will have to ask ...
20
votes
2answers
8k views

Uploadify (Session and authentication) with ASP.NET MVC

When I use Authorize filter on an action or a controller used by uplodify (http://www.uploadify.com/) the action isn't reach... moreover Session are not retrieved. I found this to retrieved user ...
20
votes
8answers
44k views

Session timeout in ASP.NET

I am running an ASP.NET 2.0 application in IIS 6.0. I want session timeout to be 60 minutes rather than the default 20 minutes. I have done the following set in web.config Set session timeout ...
20
votes
5answers
13k views

How unique is the php session id

How unique is the php session id? I got the impression from various things that I've read that I should not rely on two users never getting the same sessionid. Isn't it a GUID?
19
votes
7answers
6k views

socket.io and session?

I'm using express framework. I want to reach session data from socket.io. I tried express dynamicHelpers with client.listener.server.dynamicViewHelpers data, but i can't get session data. Is there a ...
18
votes
5answers
500 views

What are the risks of PHP sessions?

So everyone says that sessions have security risks, I want to know what kind of risks are these? What can hackers do with sessions? This is not about knowing how to avoid attacks, I want to know how ...
18
votes
3answers
5k views

How to configure a session timeout for Grails application?

In one of controllers in my Grails application I'm preserving a parameter value in a session variable like this: session.myVariable = params.myValue After that, I can access the saved value ...
18
votes
2answers
3k views

How to save a session in Vim

Depending on my task in Vim I have several tabs open. How can I save different sessions for later use? Thanks!!
18
votes
2answers
6k views

Session null in ASP.Net MVC Controller Constructors

Why is Session null in the constructors of Controllers? It can be accessed from Action methods. Presumably, because the MVC Routing framework is responsible for newing-up a Controller, it just hasn't ...
18
votes
5answers
9k views

Any way to share session state between different applications in tomcat?

We want to split a working application in two different wars in order to be able to update one app without affecting the other. Each webapp will have different ui, different users and different deploy ...
18
votes
5answers
4k views

Django Sessions

I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?
17
votes
10answers
2k views

Storing Credit Card Numbers in SESSION - ways around it?

I am well aware of PCI Compliance so don't need an earful about storing CC numbers (and especially CVV nums) within our company database during checkout process. However, I want to be safe as ...
17
votes
2answers
7k views

How to empty/destroy a session in rails?

I can't seem to find it anywhere... How do I delete/destroy/reset/empty user's session in rails? Not just one value but the whole thing..
17
votes
2answers
2k views

IIS Session Timeout vs ASP.NET Session Timeout

In IIS 6 (and other versions too afaik), there is a Session Timeout setting in Properties -> Home Directory Tab -> Configuration button -> Options tab. Looks like this: And in the ASP.NET ...
17
votes
8answers
732 views

What is a reliable method to record votes from anonymous users, without allowing duplicates

First of all, I searched as best I could and read all SO questions that seem relevant, but nothing specifically answered this. This is not a duplicate, afaik. Obviously if anonymous voting on a ...
16
votes
5answers
2k views

What should be the lifetime of an NHibernate session?

I'm new to NHibernate, and have seen some issues when closing sessions prematurely. I've solved this temporarily by reusing sessions instead of opening a session pr transaction. However, I was under ...
16
votes
4answers
13k views

asp.net What to do if current session is null?

In my web app, I do something like this to read the session variables: if (HttpContext.Current.Session != null && HttpContext.Current.Session["MyVariable"] != null) { string myVariable= ...
16
votes
5answers
2k views

REST - complex applications

I'm struggling to apply RESTful principles to a new web application I'm working on. In particular, it's the idea that to be RESTful, each HTTP request should carry enough information by itself for ...
16
votes
13answers
3k views

ASP.Net Session

I am wanting to store the "state" of some actions the user is performing in a series of different ASP.Net webforms. What are my choices for persisting state, and what are the pros/cons of each ...
15
votes
3answers
9k views

Secure cookies and mixed https/http site usage

Lots of sites appear to support https but don't use secure cookies. I want to make my site use secure cookies but to allow for some content to be accessed using http instead. A sensible way to do ...
15
votes
6answers
10k views

Do AJAX requests retain PHP Session info?

If I had a user logged onto my site, having his id stored in $_SESSION, and from his browser he clicked a 'Save' button which would make an AJAX request to the server. Will his $_SESSION and cookies ...
15
votes
16answers
3k views

PHP: $_SESSION - What are the pros and cons of storing temporarily used data in the $_SESSION variable

One thing I've started doing more often recently is retrieving some data at the beginning of a task and storing it in a $_SESSION['myDataForTheTask']. Now it seems very convenient to do so but I ...
14
votes
2answers
355 views

Do sessions really violate RESTfulness?

Is using sessions in a RESTful API really violating RESTfulness? I have seen many opinions going either direction, but I'm not convinced that sessions are RESTless. From my point of view: ...
14
votes
4answers
1k views

I just discovered why all ASP.Net websites are slow, and I am trying to work out what to do about it

I just discovered that every request in an ASP.Net web application gets a Session lock at the begging of a request, and then releases it at the end of the request!!! I mean, WTF Microsoft! In case ...
14
votes
2answers
3k views

NHibernate session management and lazy loading

I am having a heck of a time trying to figure out my session management woes in NHibernate. I am assuming that a lot of my trouble is due to lack of knowledge of IoC and AOP concepts; at least that is ...
14
votes
5answers
6k views

Cache VS Session VS cookies?

What are the do's and don'ts about Cache VS Session VS Cookies? For example: Im using Session variables a lot and have sometimes problem in a booking-application when users starts to order products ...
14
votes
4answers
14k views

asp.net cookies, authentication and session timeouts

I have an asp.net website that uses forms authentication. There are a few things I keep in sessions like username, userID, email, etc. I allow the user to stay logged into the website by setting a ...
13
votes
2answers
234 views

Redis backed ASP.NET SessionState provider

I'm currently developing an ASP.NET SessionState custom provider that is backed by Redis using Booksleeve. Redis seemed like a perfect fit for SessionState (if you must use it) because: Redis can ...
13
votes
2answers
792 views

Modifying Dictionary in Django Session Does Not Modify Session

I apologize for "asking" a question to which I already know the answer, but this was frustrating enough that I thought the answer should be recorded on stackoverflow. If anyone has something to add ...
13
votes
2answers
13k views

Forms Authentication Timeout vs Session Timeout

In my asp.net website i am using asp.net form authentication with following configuration <authentication mode="Forms"> <forms loginUrl="~/Pages/Common/Login.aspx" ...
13
votes
7answers
2k views

Transparent user session over several sites (single sign-on + single sign-off)

I have several sites in different domains: example.com, example.org, mail.example.com and passport.example.org. All of the sites are having common look-and-feel and should share the same user base. ...
13
votes
4answers
20k views

Connection problems with SQL Server in ASP.NET applications using out-of-process session state

I have several ASP.NET applications deployed in a farm of 4 Windows 2003 machines. Each application uses a separate App Pool and Virtual Directory in IIS. They rely heavily on sessions which are ...

1 2 3 4 5 155