| |
GeekInterview.com > Interview Questions > J2EE > JSP
| Print | |
Question: What is the difference between http session and application session?
|
| July 07, 2008 03:56:20 |
#6 |
| konnipati.sivaa |
Member Since: October 2007 Total Comments: 6 |
RE: What is the difference between http session and application session? |
The HTTP session is a interface of javax.servlet.http,The servlet container uses this interface to create a session between an HTTP client and an HTTP server. A session usually corresponds to one user, who may visit a site many times. The server can maintain a session in many ways such as using cookies or rewriting URLs.
from konnipati.sivakumar |
| |
Back To Question | |