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 |
HTTP tunneling means what?
I Have A Plan to develop a Project in Struts,I want the template of struts project with Hibernate.Canany body provide me the required information?
What is the difference between callling a RequestDispatcher using ServletRequest and ServletContext?
How will you pass values from HTML page to the servlet?
What is pure servlet?
Is servlet synchronized?
What is lazy loading and what is Generic Servlet Class?
What is a cookie What is the difference between session and cookie
Differentiate between the web server and application server?
Hi Frieds, I am new to servlet why to use servlet in webapplication. what i know is " use servlet as a controller in mvc and to implemnent business logic . is it correct ? One more thing reason for implementing business logic with servlets , why not jsp.
What is servlet attributes and their scope?
what is session tracking?what are types of session tracking ?and when to cookies,when to use sessionmanagement,whent use url rewriting technique,plz explain briefly?