I developed a Spring-Webflow based JSF application using primefaces UI component library. I have a spring bean to store events. It has a Date and a String field. There is a UI, where users can create events, by selecting the date, and typing the name of the holiday.
If I start the application with mvn tomcat7:run everything works fine, but if I deploy the war package on Tomcat7, I got a serious error. If a user wants to create an event, selects the date, types the name and then submits it, the value of the String variable will be "false", but the Date is ok. It seems, somehow the value is not getting transmitted to backing bean or changing somewhere to "false".
I'm using the default tomcat configuration, except the memory. I allocated 2GB memory for tomcat.
Originally the scope of the bean was session, then I tried to change it to request, but didn't solve the problem.
I think, this is some kind of tomcat configuration related problem, but I'm not sure.
Does anyone faced some kind of issue like this?