JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 462 Page Views: 

What is the Max size of a Session Object?



Posted By: Avi Date: 5 November 2010 08:14:57 AM
 Answer:

There is no such limit on the amount of information that can be saved in a Session Object.  The only limit is the Session ID length , which should not exceed more than 4K.


Posted By: avibtech


Date: 5 November 2010 08:14:57 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image sbRYXq
Related Questions
JSP : What is the using of “super.init (config)” in servlets ?

What is the using of “super.init (config)” in servlets ?

To access the ServletConfig from the servlet.
Category: JSP Date: 11/8/2010 10:12:56 PM
JSP : What is the container?

What is the container?

container is a runtime support of a system-level entity and provides components with services such a....
Category: JSP Date: 11/8/2010 8:22:59 PM
JSP : How setting a cookie?

How setting a cookie?

Cookie c = new Cookie("name","value"); response.addCookie(c);
Category: JSP Date: 11/8/2010 7:50:57 PM
JSP : How can a servlet refresh automatically?

How can a servlet refresh automatically?

By using client-side refresh or server push.
Category: JSP Date: 11/8/2010 7:17:57 PM
JSP : What is a servlet filter?

What is a servlet filter?

Servlet filters are pluggable web components that used to implement pre-processing and post-processi....
Category: JSP Date: 11/8/2010 6:00:59 PM