My problem is as the title , and I programmed with Java, following is my code
Cookie cookie = new Cookie("shikaiwenCookie","sended");
cookie.setMaxAge(2000);
cookie.setDomain("/bbs");
this is the information I get from my HTTP monitor. It seems that cookie has been send to the browser. But when I submit my form, the browser did not send the cookie to my server. Could someone help me ? Thanks in advance .