Where does the session Object stores? If 100 users are
connecting to the server. How does it recognize which
session belongs to which user?
Answers were Sorted based on User's Feedback
Answer / priyanjan
all session objects are reside at server side.user
belonging session is recognised by their session id.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / rajesh
Whenever the first request comes from the browser(user) the
sever creates an session object for that request and send a
session id back to the user(browser).
Based on the session id server recognizes the session for
user.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / shani kr. gupta
Actually,in Session
suppose a client makes a request to the server.then server
generates the unique session id then retuns
(sessionid+response)back to the client.Again that client
makes a req.means(req+session id) to server.then server will
recognise the session id then will be seeing that that id is
already in existence or not.is it is then server will be
getting that req. is coming from same client.then retuns
(sessionid+response)back to the client.
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / sahnaj khan
the sesssion will be stored only on server side, when any
user post the his/her request in server side. now in this
condition server to note the seesion perticular name and
session id ofcourse.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / jas
sessionobject is stored at serverside.
by using the session name the session object recognizes.
| Is This Answer Correct ? | 3 Yes | 6 No |
when A client sent a request to the server to open facebook page and close the browser after this request .at that time the same user do login by using a different browser then that session id will exist or not for the same client??
What is the relationship between the canvas class and the graphics class?
what is a Daemon Thread?
If i learn Java, what kind of applications can i create that will help Banking, Retail, Hotel, Logistics industry.
What happens when we invoke a thread?s interrupt method while it is in sleeping or waiting condition?
what is the difference between System.out.println and out.println in java
What is an abstract method?
can a static method be overridden
What class is the top of the awt event hierarchy?
What are the steps involved in developing an RMI object?
What is the argument type of a programs main() method?
what is the RMI / IIOP?