Hi, I am trying to display a label using messages in a property file src/global-messages.properties : personBean.firstName=Your first name
(The default locale i am using is en_US) In struts.xml i declared it : <constant name="struts.custom.i18n.resources" value="global-messages" /> In a JSP i try do display a label : <s:label key="personBean.firstName" /> The HTML code generated is : <label id="personBean_firstName"></label> The text is missing. Does anyone have an idea what the problem might be ? Thanks