Define HttpSession Class
By Ramakrishna on Sep 2, 2008 in Session Interview Questions
Question: What is HTTPSession Class?
Answer: HttpSession Class provides a way to identify a user across across multiple request. The servlet container uses HttpSession interface to create a session between an HTTP client and an HTTP server. The session lives only for a specified time period, across more than one connection or page request from the user.
