Cookie « HTTP « JSP-Servlet Q&A





1. Missing javax.servlet.http.Cookie class    stackoverflow.com

I haven't been using Java extensively hence forget a lot fundamental things. Basically, I am working with a web-dynamic project (using Eclipse IDE with jdk 1.6), and during the ...

2. Problem removing cookie in servlet    stackoverflow.com

I trying to remove a cookie in a servlet with this code

Cookie minIdCookie = null;

for (Cookie c : req.getCookies()) {
    if (c.getName().equals("iPlanetDirectoryPro")) {
      ...