Re: ActionErrors getting lost between action and JSP

2003-01-17 Thread Giri Alwar
. - Original Message - From: Parnell, Giles (AU - Sydney) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Thursday, January 16, 2003 5:03 PM Subject: RE: ActionErrors getting lost between action and JSP Hi there Giri I seem to have got this working... although not sure why

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread Giri Alwar
See my comments below. - Original Message - From: Parnell, Giles (AU - Sydney) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 10:03 PM Subject: RE: ActionErrors getting lost between action and JSP Hi there Giri Thanks for your

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread James Mitchell
lost between action and JSP See my comments below. - Original Message - From: Parnell, Giles (AU - Sydney) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 10:03 PM Subject: RE: ActionErrors getting lost between action and JSP

Re: ActionErrors getting lost between action and JSP

2003-01-16 Thread Giri Alwar
:10 PM Subject: Re: ActionErrors getting lost between action and JSP Sorry if this was mentioned, but are you using redirect=true for that action-mapping? -- James Mitchell - Original Message - From: Giri Alwar [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED

RE: ActionErrors getting lost between action and JSP

2003-01-16 Thread Parnell, Giles (AU - Sydney)
Subject: Re: ActionErrors getting lost between action and JSP See my comments below. - Original Message - From: Parnell, Giles (AU - Sydney) [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, January 15, 2003 10:03 PM Subject: RE: ActionErrors getting lost

Re: ActionErrors getting lost between action and JSP

2003-01-15 Thread Giri Alwar
You need to save the ActionErrors object in the request in order to access it from the JSP. The simplest way to do this is as follows: In your Action class, ActionErrors errors = new ActionErrors(); errors.add(some property name, new ActionError(some.key)); // The next step is

RE: ActionErrors getting lost between action and JSP

2003-01-15 Thread Parnell, Giles (AU - Sydney)
: Re: ActionErrors getting lost between action and JSP You need to save the ActionErrors object in the request in order to access it from the JSP. The simplest way to do this is as follows: In your Action class, ActionErrors errors = new ActionErrors(); errors.add(some property name, new