Re: Issues with Tomcat 7.0.57 not loading ActionServlets

2015-05-19 Thread RAJ
Hi Martin, Thanks for your quick response We are not using Maven. It's ant build and have got no documentation. I have just started supporting this application with no proper documentation. I will check if tiles.jar file exists under lib folder and get back to you after working on your suggesti

RE: Issues with Tomcat 7.0.57 not loading ActionServlets

2015-05-19 Thread Martin Gainty
please confirm url,connection,developerConnection entries are pointed to struts1 in section your pom.xml: scm:svn:http://svn.apache.org/repos/asf/struts/struts1/trunk scm:svn:https://svn.apache.org/repos/asf/struts/struts1/trunk http://svn.apache.org/viewcvs.cgi/struts/

Re: Change of HttpSession causes java.lang.IllegalStateException: HttpSession is invalid

2015-05-19 Thread Christoph Nenning
Your interceptor can use the static method: ActionContext.setSession(Map session) Have a look at CreateSessionInterceptor to see how the map parameter can be created. When your own interceptor is placed before ServletConfigInterceptor in stack it will affect SessionAware. Regrads, Christoph

Re: Change of HttpSession causes java.lang.IllegalStateException: HttpSession is invalid

2015-05-19 Thread JOSE L MARTINEZ-AVIAL
Hello Christoph, Apart from the issue with static access to @com.spb.mvc.util.Constants@ATRB_SESSION_USER, is there no way to update the reference to the session across the whole framework? Because we are having the same issue with SessionAware if the session is destroyed/created in one of the i

Re: STruts 2 - populating an ArrayList from the JSP

2015-05-19 Thread Preetham Mallavarapu
Thanks Christoph Nenning. I found the issue.. Thanks once again. On Mon, May 18, 2015 at 5:50 PM, Christoph Nenning < christoph.nenn...@lex-com.net> wrote: > Try to use browser dev tools to debug your post request. Make sure the > parameter names are correct. > > > > > > > > Can you guys help m

Re: Change of HttpSession causes java.lang.IllegalStateException: HttpSession is invalid

2015-05-19 Thread Christoph Nenning
> > Hello, > We have a struts2 project. In that project we have a security procedure > in order to log in the users. As part of the login process, the session is > destroyed and recreated once the user is logged in, in order to avoid > Session hijacking. The problem we are having is that the