Struts1 to Struts2 Migration Support Query

2013-08-15 Thread Vijayalayan.Selvaraj
Hi, Sincere Apologies for raising this issue with the entire team. I'm not aware of the process and not sure if I am raising this in the correct forum. Our project is developed on Struts 1.1 and has been running without any issues for the past 5-8 years. As per the recent announcement of EOL

Re: Struts1 to Struts2 Migration Support Query

2013-08-15 Thread Paul Benedict
The Struts 1 plugin supports S1 Action classes only -- there is no view support. The S1 tag libraries won't be functional so you should convert your pages to use S2 tags. On Thu, Aug 15, 2013 at 6:10 AM, vijayalayan.selva...@cognizant.com wrote: Hi, Sincere Apologies for raising this issue

conflict between message.properties for multiple Struts war files

2013-08-15 Thread Omar Ngarigari
I have three different applications that were developed using Struts2 framework. I deployed three different war files on the JBoss AS6. But, now I am having problem with global message.properties files. Each war file has its own message.properties file. message.properties file for the App1.war

Re: conflict between message.properties for multiple Struts war files

2013-08-15 Thread Lukasz Lenart
All these WARs are part of the same EAR? Or they just separated WARs? You can define a constant struts.custom.i18n.resources in struts.xml for each WAR: constant name=struts.custom.i18n.resources value=app1-message/ and then put your app.title in app1-message.properties and so on for the rest.