Hi, Is it always possible with Struts2 to manage the Token manually with saveToken(), resetToken().. ? I'm trying to upgrade from Struts1.2.8 to Struts2.0, and I would like not to modify all the existing (and working) code... I've seen there is a TokenTag to put a token (into request I suppose) and 2 Interceptors to check weither the token is valid and avoid problems with multiple submission, but this means I've to be sure that all pages have the TokenTag inside if I want to deal correctly with tokens. If I can put and remove it myself in my "mother" Action class (extends ActionSupport), it is done only one time, and I'm sure all pages will support it. Does someone have a better solution? Thanks.
Sebastien