Re: Confused about upgrading Apache Struts

2018-04-19 Thread Alex Choi
Hi Sean, Maybe I can help explain what you're about to undertake from a SysAdmin prospective. Upgrading or changing an application framework like Struts is similar to upgrading or changing a Linus/Unix pplication package or dependancies. In Windows, it would be similar to upgrading or changing

Re: Help : Disable Strict Method Invocation for struts 2 rest plugin

2018-04-19 Thread DevaGerald
http://struts.apache.org/dtds/struts-2.5.dtd;> regex:[a-zA-Z]* -- Sent from:

Re: Struts2 login action class seems to be reused

2018-04-19 Thread Prasanth Pasala
There is a index.jsp which is defined as default page in web.xml it just forwards the request to Login.action. There is no chaining of actions in struts itself. We do have a LoginFilter which verifies if a user is logged in. Thanks, Prasanth On 04/19/2018 03:26 AM, Yasser Zamani wrote: > > On

Re: Struts2 login action class seems to be reused

2018-04-19 Thread Yasser Zamani
On 4/19/2018 7:21 AM, Prasanth Pasala wrote: >   > com.opensymphony.xwork2.interceptor.ChainingInterceptor.copyStack(ChainingInterceptor.java:153) >   > com.opensymphony.xwork2.interceptor.ChainingInterceptor.intercept(ChainingInterceptor.java:143) Thanks! These lines show Struts doesn't set

Re: Help : Disable Strict Method Invocation for struts 2 rest plugin

2018-04-19 Thread Lukasz Lenart
2018-04-19 8:58 GMT+02:00 DevaGerald : > Just a clarification. May be my point was misunderstood. > > Ex : /resource/resource_id/hello > This will call the hello method of my controller. > REST plugin directly maps to my custom method. In this case, it calls the > hello

Re: Help : Disable Strict Method Invocation for struts 2 rest plugin

2018-04-19 Thread DevaGerald
Just a clarification. May be my point was misunderstood. Ex : /resource/resource_id/hello This will call the hello method of my controller. REST plugin directly maps to my custom method. In this case, it calls the hello method of my ResourceController. What will be the best solution for this