Re: Struts2 login action class seems to be reused

2018-04-18 Thread Prasanth Pasala
Below is the stack trace for setting of username. So struts2 has set the username, but that name doesn't exist in the request object. Struts Data: Username: jsmith Action: Login Request Data: Username: null Action: null java.lang.Thread.getStackTrace(Thread.java:1559)  

Re: [S2] ExecuteAndWait Interceptor // Only re-submit token parameters on refresh?

2018-04-18 Thread Yasser Zamani
On 4/18/2018 5:27 PM, Martin Gainty wrote: > MG2>some confusion on where session is accessed > * available. This is because actions are built on a single-thread model. The > * only way to pass data is through the session > MG2>with chain interceptor No it didn't mean "with chain interceptor"

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

2018-04-18 Thread Lukasz Lenart
Here https://issues.apache.org/jira/projects/WW/issues 2018-04-18 15:04 GMT+02:00 DevaGerald : > Sorry if I am so dumb. Where should i file the ticket? > > > > -- > Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html > >

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

2018-04-18 Thread DevaGerald
Sorry if I am so dumb. Where should i file the ticket? -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

Re: [S2] ExecuteAndWait Interceptor // Only re-submit token parameters on refresh?

2018-04-18 Thread Martin Gainty
MG2>some confusion on where session is accessed From: Yasser Zamani on behalf of Yasser Zamani Sent: Wednesday, April 18, 2018 2:57 AM To: user@struts.apache.org Subject: Re: [S2] ExecuteAndWait Interceptor //

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

2018-04-18 Thread Lukasz Lenart
2018-04-18 9:15 GMT+02:00 DevaGerald : > Yes i have configured rest plugin for that Ach... so we must fix allowed-methods to include those REST methods, could you fill a ticket? Regards -- Łukasz + 48 606 323 122 http://www.lenart.org.pl/

REMINDER - TAC Applications closes in 2 weeks for ACNA Montréal

2018-04-18 Thread Rene Gielen
Reminder that travel assistance applications for ApacheCon NA 2018 are still open but only for another*2 weeks*! Please get your applications in NOW. We will be supporting ApacheCon NA Montréal, Canada on 24th - 29th September 2018  TAC exists to help those that would like to attend ApacheCon

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

2018-04-18 Thread DevaGerald
Yes i have configured rest plugin for that -- Sent from: http://struts.1045723.n5.nabble.com/Struts-User-f3426046.html - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

Re: [S2] ExecuteAndWait Interceptor // Only re-submit token parameters on refresh?

2018-04-18 Thread Yasser Zamani
On 4/18/2018 1:21 AM, Martin Gainty wrote: > MG>AFAIK a redirect terminates the old session and creates a new session I think redirect to same domain:ip in same browser tab page should keep session. > MG>a better alternative is to implement ChainingInterceptor with type="chain"> e.g. As