> Do you mind if I send you that application through Email attachment? Since I > am afraid I can't explain well in English. > The expiration problem still exists after logging into the application from > a stateless form with a redirect(true).
In that case, the best way is to open up an issue in JIRA and attach your zip to that issue. > And do you guys know why CompoundRequestCycleProcessor disappear in the > wicket-1.3.0-incubating-SNAPSHOT.jar (Mar 18), I am using it for URL > encryption. Yep, see http://cwiki.apache.org/WICKET/migrate-13.html#Migrate-1.3-IRequestCycleProcessorgotsimplified For the crypted url variant, put: /** * @see wicket.protocol.http.WebApplication#newRequestCycleProcessor() */ protected IRequestCycleProcessor newRequestCycleProcessor() { return new WebRequestCycleProcessor() { protected IRequestCodingStrategy newRequestCodingStrategy() { return new CryptedUrlWebRequestCodingStrategy(new WebRequestCodingStrategy()); } }; } in your application. Regards, Eelco ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
