Re: how to implement tokens

2006-09-15 Thread Daniel Chacón Sánchez
try this: boolean tokenValid = isTokenValid(request); if(tokenValid){ resetToken(request); return true; } else{ saveToken(request); return false; } i use it for control the user double click on botton

how to implement tokens

2006-09-13 Thread Gomathi
hai, Thanks for give this idea. I implemented in my action class like this if(isTokenValid(request)) resetToken(request) --- --- saveToken(request).. but no effect on this gomes