|
|
|
Servlets
|
Session Tracking
As we know that the Http is a stateless protocol, means that it can't persist the information. It always treats each request as a new request. In Http client makes a connection to the server, sends the request., gets the response, and closes the connectio
View Rating |
|
|
Servlets
|
Java : Servlet Tutorials
History of Web application
Earlier in client- server computing, each application had its own client program and it worked as a user interface and need to be installed on each user's personal computer.
View Rating |
|
|
Servlets
|
Session Related Interview Questions
Question: What is a Session?
Answer: A Session refers to all the request that a single client makes to a server. A session is specific to the user and for each user a new session is created to track all the request from that user. Every user has a separa
View Rating |
|
|