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 |
Is it possible to call servlet with parameters in the URL?
hi actully i hav form columns with origin and destination names .as like as i need to create one more column with name amount. my requirement is when i select origin and destination columns automatically i need to get amount from database.how can i. please tel me with relative code
How to generate the server side programming and the advantages of it over the other languages?
When Servlet is unloaded?
What is with the javax.servlet package naming?
Is the init(ServletConfig sc) throws IOException or not?
can i call destroy() method in init() method of servlet
which method in doGet or doPost is use to send binary date to server
What is url encoding and url decoding
What is a servlet context?
What is a cookie What is the difference between session and cookie
When is the servlet instance created in the life cycle of servlet? What is the importance of configuring a servlet?