/**
* Disallow addCookie() calls on an included response.
*
* @param cookie The new cookie
*/
public void addCookie(Cookie cookie) {
if (!included)
((HttpServletResponse) getResponse()).addCookie(cookie);
}
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063545#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...