I am having problems setting a cooike on a RedHat 7.3 with tomcat 4.1.18 and JDK141_01. The thing is, that I am able to read and write cookies on the same configuration on a WinXP. The code setting the cookie is:
Cookie userVote = new Cookie("havepolled", "somethingmeaningfull");
userVote.setPath(data.getRequest().getContextPath());
userVote.setMaxAge(2592000);
data.getResponse().addCookie(userVote);
How come the behavior differs?
Any suggestions are welcome!
/Henrik
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
