The only other thing I can think of is in the application.properties file:

errors.header=<UL>
errors.prefix=<LI><font color="red">
errors.suffix=</font></LI>
errors.footer=</UL>
logon.form.password.invalid=Invalid Password.

all should be set to something. I've included mine as an example

<html:errors property="login" />


public ActionErrors Validate(...)
{
   ActionErrors errors = new ActionErrors();
   errors.add("login", new ActionMessage("logon.form.password.invalid"));
   return errors;
}


This should work.

Is it possible that the application.properties file is not pointed to
in the config file?

The errors are parsed at run time, and if they don't find anything
they quietly render zippo (Which should be changed to pitch a warning
message or something)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to