Re: CookieMap

2005-06-02 Thread Sean Schofield
Yes it can set cookies. Take a look at HtmlTreeRenderer (in tree2 package.) It make use of cookies. sean On 6/2/05, Francesco Consumi <[EMAIL PROTECTED]> wrote: > Scrive Sean Schofield <[EMAIL PROTECTED]>: > > > OK we found out that the CookieMap is for. Its the *im

Re: CookieMap

2005-06-02 Thread Francesco Consumi
Scrive Sean Schofield <[EMAIL PROTECTED]>: OK we found out that the CookieMap is for. Its the *implementation* behind the Map that you get when you call context.getExternalContext().getRequestCookieMap(). Please consult the specification for the documentation on what its supposed

Re: CookieMap

2005-06-02 Thread Sean Schofield
OK we found out that the CookieMap is for. Its the *implementation* behind the Map that you get when you call context.getExternalContext().getRequestCookieMap(). Please consult the specification for the documentation on what its supposed to do. Basically it is a convenience class for dealing

Re: CookieMap

2005-05-31 Thread Sean Schofield
I'm not sure what the MyFaces CookieMap does actually. Faces provides you a Map of cookies using context.getExternalContext().getRequestCookieMap(). For an example of how that works see HtmlTreeRenderer. Not sure what o.a.m.context.servlet.CookieMap is supposed to do really. I will check

CookieMap

2005-05-27 Thread Francesco Consumi
Hi all, I'd need to some user settings of my webapp, such as data filters, in cookies. I've found the CookieMap class, but I haven't found any documentation on how to use, e.g. how to get class instance for malipulating cookies... any help ? thanks