Thanks for the response. Unfortunately, constructing a new cookie 
doesn't seem to do it. I now have two JSESSIONID cookies. I think the 
problem is that I'm somehow not intercepting the right one. Could it be 
that I'm not using the right web.xml? The cookie's getting in there 
somehow, there has to be some way to filter this.

Liam


Christoph Gaffga wrote:

>A workaround for that problem is that you set a new cookie. Not realy clean,
>but working solution:
>
>insert
>        Cookie cookie = new Cookie("JSESSIONID",
>request.getSession().getId());
>        cookie.setPath("/whereever-you-want/dir/");
>        cookie.setDomain("mydomain.com");
>        response.addCookie(cookie);
>
>before or after doFilter, you have to try.
>
>hope it will work for you.
>Christoph Gaffga
>[EMAIL PROTECTED]
>


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to