Re: Handling JSP exceptions in Struts2

2009-01-28 Thread Adam Hardy
Dave Newton on 26/01/09 21:21, wrote: Andy wrote: > it appears that the Exception interceptor will fire after > the Result has completed, which would theoretically catch > any exceptions thrown by the JSP. It's not that it fires "after" the result is completed, it's that everything happens *

RE: Handling JSP exceptions in Struts2

2009-01-27 Thread Andy
any of you know.> > Regards> Nageswara Rao Please dont hijack threads, start your own. > Date: Mon, 26 Jan 2009 22:50:45 -0800> From: nag...@btpsoft.com> To: > user@struts.apache.org> Subject: RE: Handling JSP exceptions in Struts2> > > > > > Andy Hahn wro

RE: Handling JSP exceptions in Struts2

2009-01-26 Thread Naaag
exception details in a service and > then redirect to an Action which renders a generic error page JSP. So far > so good. If anyone has any thoughts, please let me know. Thanks! > > > > >> Date: Mon, 26 Jan 2009 14:21:39 +0000 >> From: ahardy.str...@cyberspacero

Re: Handling JSP exceptions in Struts2

2009-01-26 Thread Dave Newton
Andy wrote: > it appears that the Exception interceptor will fire after > the Result has completed, which would theoretically catch > any exceptions thrown by the JSP. It's not that it fires "after" the result is completed, it's that everything happens *within* the interceptors: they're wrapped

RE: Handling JSP exceptions in Struts2

2009-01-26 Thread Andy
e has any thoughts, please let me know. Thanks! > Date: Mon, 26 Jan 2009 14:21:39 + > From: ahardy.str...@cyberspaceroad.com > To: user@struts.apache.org > Subject: Re: Handling JSP exceptions in Struts2 > > Did you sort this out already Andy? > > I can't

Re: Handling JSP exceptions in Struts2

2009-01-26 Thread Adam Hardy
Jan 2009 11:19:35 + From: ahardy.str...@cyberspaceroad.com To: user@struts.apache.org Subject: Re: Handling JSP exceptions in Struts2 Andy on 20/01/09 17:49, wrote: Using the Exception interceptor works great for catching exceptions throw by actions. However I am wondering what is the reco

RE: Handling JSP exceptions in Struts2

2009-01-22 Thread Andy
is is what I was trying to use (web.xml): java.lang.Exception /canvas.action > Date: Thu, 22 Jan 2009 11:19:35 + > From: ahardy.str...@cyberspaceroad.com > To: user@struts.apache.org > Subject: Re: Handling JSP exceptions in Struts2 > > Andy on 20/01/09

Re: Handling JSP exceptions in Struts2

2009-01-22 Thread Adam Hardy
Andy on 20/01/09 17:49, wrote: Using the Exception interceptor works great for catching exceptions throw by actions. However I am wondering what is the recommended method for catching and handling exceptions thrown by a JSP? I assume that JSP exceptions are outside the S2 scope and are to be ha

Handling JSP exceptions in Struts2

2009-01-20 Thread Andy
Using the Exception interceptor works great for catching exceptions throw by actions. However I am wondering what is the recommended method for catching and handling exceptions thrown by a JSP? I assume that JSP exceptions are outside the S2 scope and are to be handled at the container level?