It sounds to me like the keys that you are using in your action errors are in the non-default message resource file in your application; the one with the key defined.
If you don't want to use the bundle attribute in your call to <html:errors... I suggest you move those keys to the default message resource file in your app. -----Original Message----- From: Andy Kriger [mailto:[EMAIL PROTECTED]] Sent: Friday, January 10, 2003 3:34 PM To: Struts Users Mailing List Subject: ActionErrors question I have 2 message-resources defined in my webapp (one has a key defined the other does not). In one action, I am getting messages from the non-default message-resource (the one with a key defined). In that action I also create an errors object and add errors to it... getResource(request, key) ActionErrors errors = new ActionErrors(); errors.add(ActionErrors.GLOBAL_ERROR, new ActionError(key, val1, val2); saveErrors(request, errors); mapping.findForward(...); In the JSP I display the errors... <html:errors /> However, this displays nothing _unless_ I do <html:errors bundle="key"/> Why are the errors added in the 'key' bundle instead of the default bundle? This is with Struts 1.1b2. thx andy -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

