where the session data will stored?
Answers were Sorted based on User's Feedback
Answer / sandeep m
Session data is stored at server side in case of
HttpSession. Server creates a session object and stores at
server side and communicates session id to client for
further communication to be statefull. session id will be
sent to server along with further requests from the client.
In case of Cookies client maintains the session information
and sends the cookie object to server for each request. The
cookie object will be created by server but maintained by
client.
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / jai
session data will be stored in appdomain aspnet_wp.exe when
session sate mode is inproc, for stateserver it will be
stored in windows service aspnet_state.exe, for sqlserver
it will be stored in the database persistsqlstate.exe
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / chaudhary
Session data is stored in cookoies if cookies are enabled on client browser. If cookies are disabled then it can make available frm session objects.
| Is This Answer Correct ? | 6 Yes | 9 No |
What are the functions of Servlet container?
Name the servers that can be used to develope and deploy Servlets?
What are the Internal servlets maintained by the web server?
What is Request Dispatcher?
What is cookie? Why is cookie used?
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
What are the kinds of http requests?
How does java thread pool work?
What are the phases of a servlet life cycle?
why are extending GenericServlet and why are extending HttpServlet explain?
What are the steps that are required to handle the multi-threading?
What is the capacity the doget can send to the server?