Re: Using saveToken and isTokenValid

2006-03-14 Thread starki78
Good Morning You have written: The view is the result of the first submission anyway. I cannot reproduce this! How cas I achieve that a submit is just replaced once! And that by several clicks the others are just ignored I cannot manage it! If I just forward to the success Configuration Objects t

Re: Using saveToken and isTokenValid

2006-03-14 Thread Emmanouil Batsis
In simple cases i just keep redirecting to the result view (and maybe warn the user) even if the token is invalid. The view is the result of the first submission anyway. Manos starki78 wrote: Hi Thanks but my goal is just to tell the user that only the first submit shall be processed! My e

Re: Using saveToken and isTokenValid

2006-03-14 Thread Dan Jas
;user" Sent: Tuesday, March 14, 2006 10:53 AM Subject: RE: Using saveToken and isTokenValid Hi Thanks but my goal is just to tell the user that only the first submit shall be processed! My example works only partially Nice greetings -- Initial Header --- From :

RE: Using saveToken and isTokenValid

2006-03-14 Thread starki78
Mailing List" user@struts.apache.org Cc : Date : Tue, 14 Mar 2006 07:12:32 -0800 Subject : RE: Using saveToken and isTokenValid > What about putting the saveToken(request) at the bottom of the second > action as well? This will put a new token into the request in the event > y

RE: Using saveToken and isTokenValid

2006-03-14 Thread Kalcevich, Daniel
: Using saveToken and isTokenValid Hi, I try to create a solution that prevents several submits. Therefore I place at the end of the first action: saveToken(request); and in the second: if (!isTokenValid(request,true)) { // duplicate submit, return some error message to user

Using saveToken and isTokenValid

2006-03-14 Thread starki78
Hi, I try to create a solution that prevents several submits. Therefore I place at the end of the first action: saveToken(request); and in the second: if (!isTokenValid(request,true)) { // duplicate submit, return some error message to user ActionMessage msg = new ActionMessa