Re: struts 2: Redirect action giving token issue

2014-06-17 Thread Arpan
Thanks a lot Christoph.. It was a very good hint. Ultimately I have added the token value into request attribute and then accessed it in the result param as follows : token %{#request.token} On Tue, Jun 17, 2014 at 6:09 PM, Christoph Nenning < christoph.nenn...@lex-com.net> wrote: > You can

Re: struts 2: Redirect action giving token issue

2014-06-17 Thread Christoph Nenning
You can use OGNL in result config, like this: generateReport foo ${token} Regards, Christoph > Hi Christoph, > > There are token checks while submitting the ist page and while displaying > the 2nd page also. > The real problem is that while redi

Re: struts 2: Redirect action giving token issue

2014-06-17 Thread Arpan
Hi Christoph, There are token checks while submitting the ist page and while displaying the 2nd page also. The real problem is that while redirecting token is getting cleared from request parameter. Is there anyway I can pass the token in the request parameter to the next action. On Tue, Jun 17,

Re: struts 2: Redirect action giving token issue

2014-06-17 Thread Christoph Nenning
> HI All, > > We have two pages and both of them have tag and both of them use > token interceptor. > > After I submit one form I need to display another form in another page. > I am using "redirectAction" to redirect > > Before redirecting in the first action class I am setting token value i

struts 2: Redirect action giving token issue

2014-06-17 Thread Arpan
HI All, We have two pages and both of them have tag and both of them use token interceptor. After I submit one form I need to display another form in another page. I am using "redirectAction" to redirect Before redirecting in the first action class I am setting token value into session. But whe