WOCookie & IE6
"Yury Peskin" <[email protected]>
| Newsgroups | gmane.comp.web.webobjects.devel |
|---|---|
| Message-ID | <[email protected]> |
Environment: WO 5.2.3, OSX 10.3.9.
I need some help with Cookies and IE6.
I can see them being written into the response, but I do not see them in IE,
and I can see cookies from other companies there.
Here's how I write them:
WOCookie fromCookie = new WOCookie("from", customerEmail, "/", "domain.com",
-1, false);
fromCookie.setExpires(null);
context().response().addCookie(fromCookie);
One more question, Can I write multiline cookies?
Any ideas?
Thanks,
Yury