Answer Posted / rajkanth
--HTTP stands for HyperText Transfer Protocol--
--Session means a period of time--
HTTP Session is mainly used for clients, to trace their
requests towards server. For each client, a unique session
will be maintain until the server gets shutdown. Each client
have separate session ID
| Is This Answer Correct ? | 15 Yes | 4 No |
Post New Answer View All Answers
What are different Authentication options available in Servlets.
Explain the difference between servlet and cgi?
How the typical servlet code look like ?
If servlet receives multiple requests, how many objects will it create?
What are the type of protocols used in httpservlet?
When to use doget() and when dopost()?
Why doesn’t a servlet include main()?
How does Cookies work in Servlets?
What is called Session Tracking?
What is difference between server and servlet?
Why do we need a constructor in a servlet if we use the init method?
How can I send user authentication information while making URL Connection?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
What are all the advantages of servlet over cgi?
What must be implemented by all servlets?