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 |
How do you create connections for number of users, if you want to improve performance?
Explain life cycle of a Servlet?
Which is the methods of generated servlet?
What is Servlet API used for connecting database?
What is forward() and include() of servlets RequestDispatcher interface?
List out the difference between ServletConfig and ServletContext?
What are the methods in HttpServlet?
How do you deal property files in servlet?
Explain Action Servlet?
Whether thread can be used in servlets?
Explain the concept of ssi ?
can we create more than ServletContext and ServletConfig in your application