I am trying to use 2 message resource files in my application.
My struts-config.xml has:
<message-resources parameter="ApplicationResources" null="false" />
<message-resources parameter="MyWebAppResources" null="false" />
The errors are added in an Action bean with statements like:
errors.add("ToteNotFound", new ActionError("error.tote.toteNotFound"));
and displayed on the jsp with:
<html:errors/>
However, messages are only displayed from the last file listed in
struts-config.xml (in this example, from MyWebResources.properties). Any
message in the other file is not recognised and results in something like:
???en_US.error.tote.toteNotFound???
How do I persuade my application to display errors from either of two
files?
---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org
|