Ok, I tracked it down. When setting the cookie in the servlet, I need
to set the path, then the gwt client can see the cookie.

     ....
      javax.servlet.http.Cookie c = new Cookie("SessionId", "");
      c.setValue("1234");
      c.setMaxAge(-1);
      c.setPath("/");
      this.getThreadLocalResponse().addCookie(c);
      ....

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to