In Servlets we can use the feature of Session Tracking. So i want to just ask that the sessions are maintained onto the clientside or on serverside.

If it's on clientside then where?
Can i create session on the clientside HTTPSession?

I found one article which tells that sessions on clientside as well as serverside can be maintained.

link|improve this question

52% accept rate
feedback

2 Answers

up vote 2 down vote accepted

It is the server which will maintain the sessions. And it is the server responsibilty to allow session tracking happen. Clients need not bother about sending any information explicitly. As Client can sends Cookies saved on the client along with every request, server might use Cookies for sesssion tracking.

Note: Cookies are just one of the way to implement Session Tracking. It is also the best way

So server uses Cookies as one of the ways to handle session tracking.

It can also be done in other ways:

URL rewriting - the application/server should append the session id in all URL's/Links. When those are invoked from the client the session comes to the server along with the URL.

Hidden Form Fields - The forms may contain hidden input type with session id as field value. When the form is posted, the session id comes along with the form data.

link|improve this answer
Thanks..so if we delete the cookies from client side then the session gets destroy which is maintained on the server side.Am I Right?? – user460920 Feb 1 at 7:37
Yes, it will get destroyed after some timeout value. Because, the cookie are deleted on client side, the client will no more be able to send cookies to server, so, the session created on server is no more accessible. – Ramesh PVK Feb 1 at 7:59
feedback

Session resides on server side on client side we have cookie (or jsessionId or hidden form fields) to map the request with server's session


How it maps

When you submit a request for the first time( from the beginning of the time), server gives you a cookie with response they send your browser accepts that cookie it contains the expiry date, content (some String), and domain name now when you send the request again to server your browser will add that cookie for that domain in header so when server receives the request it sees the cookie from header and maps that content with sessionId on server


FYI

You can also have session in other applications (for example peer-peer app)

link|improve this answer
ok thanks..can you pls explain in brief that is it thru the cookies from client side the sessions on the server side are found..?? – user460920 Feb 1 at 4:05
sorry not got your point...You can also have session in other applications (for example peer-peer app)?? – user460920 Feb 1 at 4:10
Sure added detail rundown – Jigar Joshi Feb 1 at 4:11
you can also have session in your chat application you create (TCP/ IP chat app desktop) – Jigar Joshi Feb 1 at 4:13
2  
@user460920 You should accept this answer. Also, based on your low accept rate, you should go back and review other questions and see if there are other answers worth accepting. – Bill Feb 1 at 4:57
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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