Re: How to get the ActionErrors object from the request

2005-05-13 Thread Rutger Heijmerikx
http://www.onjava.com/pub/a/onjava/2003/07/30/jakartastruts.html?page=2 On 5/12/05, Néstor Boscán <[EMAIL PROTECTED]> wrote: > Hi > > Does somebody know how I can get the ActionErrors object from the request??? > > Regards, > > Néstor Boscán > > -- ____

Re: How to get the ActionErrors object from the request

2005-05-12 Thread Mehmet E.
http://javaboutique.internet.com/tutorials/excep_struts/ A good article Handling Messages, Errors and Exceptions in Struts 1.1 > Hi > > Does somebody know how I can get the ActionErrors > object from the request??? > > Regards, > > Néstor Boscán > __

RE: How to get the ActionErrors object from the request

2005-05-12 Thread Freddy Villalba A.
lenty of other ways to accomplish this... but these are the 2 I remember at the moment (I'm a bit rusty, I know...) My 2 cents. -Mensaje original- De: Néstor Boscán [mailto:[EMAIL PROTECTED] Enviado el: jueves, 12 de mayo de 2005 17:28 Para: 'Struts Users Mailing List' Asun

Re: How to get the ActionErrors object from the request

2005-05-12 Thread Aladin Alaily
Hi Néstor, You can do that with the following code: ActionErrors errors = (ActionErrors) request.getAttribute(Globals.ERROR_KEY); Aladin > Hi > > Does somebody know how I can get the ActionErrors object from the > request??? > > Regards, > > Néstor Boscán > -

RE: How to get the ActionErrors object from the request

2005-05-12 Thread McDonnell, Colm (MLIM)
request.getAttribute(Globals.ERROR_KEY); -Original Message- From: Néstor Boscán [mailto:[EMAIL PROTECTED] Sent: 12 May 2005 16:28 To: 'Struts Users Mailing List' Subject: How to get the ActionErrors object from the request Hi Does somebody know how I can get the ActionErr

RE: How to get the ActionErrors object from the request

2005-05-12 Thread Allistair Crossley
] > Sent: 12 May 2005 16:28 > To: 'Struts Users Mailing List' > Subject: How to get the ActionErrors object from the request > > > Hi > > Does somebody know how I can get the ActionErrors object from &

How to get the ActionErrors object from the request

2005-05-12 Thread Néstor Boscán
Hi Does somebody know how I can get the ActionErrors object from the request??? Regards, Néstor Boscán