The problem is with how you've configured your messages resources. Because you've specified a key your message resources are not being stored under the "default" messages resources key. There being stored under the bundle key "ApplicationResources". You just need to remove that (and the id, its unnecessary) and have the following...
<message-resources null="false" parameter="ApplicationResources"/> If you do specify a "key" value in the <message-resources> element, then you need to use the same value in the "bundle" attribute of the JSP tags, something like the following should work with what you had set up... <bean:message key="myMessage.key" bundle="ApplicationResources" /> I'm going to post an update to the page I originally put up which includes info on this - I'll post to the list when its ready. Niall ----- Original Message ----- From: "Michael Oliver" <[EMAIL PROTECTED]> Sent: Wednesday, April 06, 2005 5:12 PM > Still not displaying messages, here is what I have so far. > > struts-config.xml entry: > > <snip> > ...<controller/> > <message-resources id="ApplicationResources" key="ApplicationResources" > null="false" parameter="ApplicationResources"/> > <plug-in className="org.apache.struts.tiles.TilesPlugin">... > > The ApplicationResources.properties file is located at > > /WEB-INF/classes/ApplicationResources.properties > > it contains: --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]