Re: Response already committed when using ActionTag

2008-06-14 Thread Dave Newton
set, I don't know if that would help or not). Dave --- On Sat, 6/14/08, Jeromy Evans <[EMAIL PROTECTED]> wrote: > From: Jeromy Evans <[EMAIL PROTECTED]> > Subject: Re: Response already committed when using ActionTag > To: "Struts Users Mailing List" > Date:

Re: Response already committed when using ActionTag

2008-06-14 Thread Jeromy Evans
[EMAIL PROTECTED] wrote: 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. A

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

Re: Response already committed when using ActionTag

2008-06-13 Thread Jeromy Evans
[EMAIL PROTECTED] wrote: 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 HttpServletR