Hello. I'm defining some actions with no logic, they only result in some JSP. Usually this is defined like this:
<action name="someSimpleAction" class="..." > <result>/WEB-INF/jsp/Page.jsp</result> </action> But l10n is required, so I'm doing this: <action name="someSimpleActionWithLocalizationRequired" class="..." method="localize"> <result>/WEB-INF/jsp/I18nedPage.jsp</result> </action> <action name="someOtherSimpleActionWithLocalizationRequired" class="..." method="localize"> <result>/WEB-INF/jsp/I18nedPage.jsp</result> </action> where localize just returns SUCCESS. Is there any other way to handle this? Is this an acceptable approach? --------------------------------------------------------------------- To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org