Re: Response already committed when using ActionTag

2008-06-13 Thread David . W . Larson
Hi Jeromy, thanks for the respose. The response is already committed in the action class (before the Result is executed). In the execute() method, the result of 'response.isCommitted()' is true. So I think the response is committed even before getting to the Result. According to J2EE documentat

Response already committed when using ActionTag

2008-06-13 Thread David . W . Larson
I have a JSP that uses an ActionTag to call a Struts 2 action class directly from the JSP. But in the action class, the HTTP response has already been committed. This makes it impossible for me to set cookies from my action class. I tested this by calling HttpServletResponse.isCommitted() is m