What is Session and cookies?Explain in detail with an
example?
Answers were Sorted based on User's Feedback
Answer / ravikiran
session will keep track of user interaction of a single client
cookies are the ones which are the small server side
entities to store the client side data inside it.
| Is This Answer Correct ? | 27 Yes | 8 No |
Answer / debapriya maity
we r all familiar with the method given below
HttpSession session==request.getSession(true);
what happen here
Container whenever gets a request for a session from a client,
it checks out whether the request is for existing or a new
one,how it does.
If a new session: creates a cookie(small text file) ,stuffs
the session id ,and send it to the client as apart of
response headers (Set Cookie:)
existing one---gets the sessionid ,searches for the matching
session and associate with the request.
Now thing if ur browser is cookies disable, what will happen
next?? :)
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / manikandan [ gtec,vellore ].
Session,Keeps a track of a User activities across the web pages.
Cookies,it is a small text file creates by a application
server and stored in a client environment.it stores a client
id and cookies can b read by appropriate application server
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / viral koradiya
Cookie is the most important topic in servlet.
Cookies,it is a small text file creates by a application
server .
cookie stored in a client environment.it stores a client
id and cookies can b read by appropriate application server
| Is This Answer Correct ? | 3 Yes | 0 No |
List the features of java programming language.
what is the purpose of the runtime class?
Explain about the dynamic behavior of core java?
Can classes declared using the abstract keyword cab be instantiated?
Can we use synchronized block for primitives?
How to count occurrences of each duplicate element in a list {a,b,d,c,a,b} ? Thanks in Advance
Why java is not 100% object-oriented?
What is the public method modifier?
What is a singleton class in Java? And How to implement a singleton class?
When can you say a graph to be a tree?
Write a program to print all permutations of string?
What is unicode with example?