Home Servlets Cookies



Cookies
Posted on: April 18, 2011 at 12:00 AM
This page discusses - Cookies

Setting the Cookies

In this example we are going to set the cookie.

HttpSession session = requsest.getSession();

Inside the service method we ask for a session, and everything happens automatically. We don't need to make a new Cookie object. We don't have any need to associate the session id with the cookie. Even there is no need to set the cookie into the response.

Cookies are just a name/value pair which gets exchanged between client and the server. When the client sends the request to the server for the first time the container generates a unique session id. The server sends the cookie to the client

Related Tags for Cookies:


More Tutorials from this section

Ask Questions?    Discuss: Cookies  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.