Proper use of ProcessAction, ProcessResult and ResultList

2004-01-05 Thread Noel E. Lecaros
Dear Struts users: For a couple of weeks now, I've been trying to use the ProcessAction class in Struts Scaffold, following the book "Struts in Action" and the example Artimus application in which it was demonstrated. It's pretty convenient in that it simplifies the design of my business logic cl

RE: [other] RE: Rollover image

2003-12-22 Thread Noel E. Lecaros
In my setup, I had the images in the root of the web application while all the jsps are under WEB-INF/pages. However, I had to specify a URL of "//images/view_over.gif" to be able to pick up the images. -Original Message- From: Andy Schmidgall [mailto:[EMAIL PROTECTED] Sent: Monday, Decem

RE: [other] newbie question/problem

2003-12-22 Thread Noel E. Lecaros
How about your struts.jar? You might have multiple copies of it, and the one being picked up happens to be an older copy. -Original Message- From: Jim Anderson [mailto:[EMAIL PROTECTED] Sent: Monday, December 22, 2003 2:23 PM To: Struts Users Mailing List Cc: Jim Anderson Subject: [other]

RE: [other] error tag

2003-12-22 Thread Noel E. Lecaros
Jerald, The first parameter to ActionMessages.add() is a string interpreted to be either ActionMessages.GLOBAL_MESSAGE or a name of one of your form fields. If you had a field on your form that was named (i.e. property=...) "username", then if you wished to add a message pertaining to this field,

RE: [other] error tag

2003-12-21 Thread Noel E. Lecaros
Hi Jerald, The single-string ActionError class constructor that you are invoking interprets the parameter passed to it as a key of a message string defined in your Application.properties file (this file is usually placed under the classes/resources directory). HTH Noel -Original Message