Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am just beginning to start learning web application development, using python. I am coming across the terms 'cookies' and 'sessions'. I understand cookies in that they store some info in a key value pair on the browser. But I have a little confusion regarding sessions, in a session too we store data in a cookie on the user's browser.

For example - I login using username='alice' and password='default'. In such a case the data will be posted to the server which is supposed to check and log me in if authenticated. However during the entire process the server also generates a session ID which will be stored in a cookie on my browser. Now the server also stores this session ID in its file system or datastore.

But based on just the session ID, how would it be able to know my username during my subsequent traversal through the site? Does it store the data on the server as a dict where the key would be a session ID and details like username, email etc. be the values?

I am getting quite confused here. Need help.

share|improve this question
“Does it store the data on the server as a dict where the key would be a session id and details like username, email etc be the values?” ...yes. The ‘dict’ might be a relational database, but that's basically how it works. – bobince Sep 27 '10 at 13:56
Thanks to all of you ! – Alice Sep 27 '10 at 18:17
See in depth write up @ bitspedia.com/2012/05/… – Asif Shahzad May 27 '12 at 14:05

4 Answers

up vote 10 down vote accepted

In many dynamic web sites you want to store user data between HTTP requests (because http is stateless and you can't otherwise associate a request to any other request), but you don't want that data to be maintained client side (in the cookie, in URL parameters (like http://www.foobar.com/myPage?asd=lol&boo=no), and so on...) because you don't want the client to play around with that data without passing through your (server side) code.

The solution is to store that data server side, give it an "id", and let the client only know (and pass back at every http request) that id. There you go, sessions implemented.

Of course there are other aspects to consider, like you don't want people to hijack other's sessions, you want sessions to not last forever but to expire, and so on.

In your specific example, the user id (could be username or another unique ID in your user database) is stored in the session data, server-side, after successful identification. Then for every HTTP request you get from the client, the session id (given by the client) will point you to the correct session data (stored by the server) that contains the authenticated user id - that way your code will know what user it is talking to.

share|improve this answer

"Session" is the term used to refer to a user's time browsing a web site. It's meant to represent the time between their first arrival at a page in the site until the time they stop using the site. In practice, it's impossible to know when the user is done with the site. In most servers there's a timeout that automatically ends a session unless another page is requested by the same user.

The first time a user connects some kind of session ID is created (how it's done depends on the web server software and the type of authentication/login you're using on the site). Like cookies, this usually doesn't get sent in the URL anymore because it's a security problem. Instead it's stored along with a bunch of other stuff that collectively is also referred to as the session. Session variables are like cookies - they're name-value pairs sent along with a request for a page, and returned with the page from the server - but their names are defined in a web standard.

Some session variables are passed as HTTP headers. They're passed back and forth behind the scenes of every page browse so they don't show up in the browser and tell everybody something that may be private. Among them are the USER_AGENT, or type of browser requesting the page, the REFERRER or the page that linked to the page being requested, etc. Some web server software adds their own headers or transfer additional session data specific to the server software. But the standard ones are pretty well documented.

Hope that helps.

share|improve this answer
I know on the IIS servers I use I can get the user name from a USER_NAME header, but that may be IIS-specific. – Tim Rourke Sep 27 '10 at 15:36

Ok, not sure how this question belong to SO. But to be short. HTTP is stateless connection protocol, hence server cannot differentiate between different connections of different users. Hence comes cookie, once client connects first time to server, server generated new session id, which later will be send to client as cookie value. And from now on this session id will identify clients connection, because within each HTTP request it will see appropriate session id inside cookies. Now for each session id, server keeps some data structure, which enables him to store data specific to user, this data structure you can abstractly call session.

share|improve this answer

The first article on Google search for "how session works in web applications", explains the concept in enough details:

http://www.bitspedia.com/2012/05/how-session-works-in-web-applications.html

share|improve this answer
1  
This question was posted in 2010 and was well explained by Luke and many others, and the article you are referring to has been posted yesterday. Thanks anyway – Alice May 28 '12 at 7:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.