What is a Session Id?
Answer / rambabu gonela
HTTP protocol uses stateless connections. Connection exists
for only single request/response (makes connection to
server, sends request, gets response, closes connection)
On the client?s first request, the container generates a
unique ID (for recongize the client) and sends it back to
the client with response. The client sends back the ID
with each subsequent request. The container sees the ID,
finds the matching session and associates the session with
the request.
This Id called as a Session Id.
| Is This Answer Correct ? | 8 Yes | 0 No |
What is filter? Can filter be used as request or response?
What is URL Encoding?
What is HTTP Session ?
What is the use of servlet context?
Define servlet mapping?
what is meant by Transaction Isolation Levels?
Differentiate between the web server and application server?
Difference between forward() method and sendredirect() method ?
What is Servlets and explain the advantages of Servlet life cycle?
If a servlet is not properly initialized, what exception may be thrown?
In the servlets, we are having a web page that is invoking servlets ,username and password? which is checks in database? Suppose the second page also if we want to verify
How do you configure a centralized error handler in servlets?