now that i have the cookie reading, i've tried to set them: HttpServletResponse res = rundata.getResponse(); Cookie c = new Cookie ( ... ); c.setMaxAge(-1); res.addCookie( c );
the cookie is created, but not added. Since is a HttpServletResponse i think should be 'sended' in some way, i've seen the sources of that class and didnd find anything, so i guess there is another class that 'sets' the Response. (i've checked on rundata too, setResponse() doesnt exists).
