Using Wicket 1.3 is the surest way to get rid of it. In your case, I wouldn't be surprised if the problem can be traced back to the fact that you use SiteMesh with Wicket. As I understand it, SiteMesh combines separate requests like working with frames would do, correct? So for every Wicket piece you include, and instance is kept, and if you have too many pieces you may run out of what Wicket reserves by default for back button support. To fix this, place every SiteMesh fragment in a separate page map[1].
If it is not SiteMesh (e.g. you just include one fragment), you should try to figure out why it can't find the page. Typically, in any Wicket application, refreshing like that should work should fine. Eelco [1] http://cwiki.apache.org/WICKET/faqs.html#FAQs-HowdoIprovidethepagemapforbookmarkablepages%253F On 4/25/07, mraible <[EMAIL PROTECTED]> wrote: > > I'm using Eclipse, Maven 2 and the Maven Jetty Plugin (with "mvn jetty:run") > to develop my Wicket application. Everytime I save a .java or .html file, > Jetty reloads and all is good. However, when I hit "refresh" on my browser, > Wicket allways gives me a "page expired" error and I have to start from > http://localhost/app again. Is there anyway to prevent this? Does > DEVELOPMENT mode (in Application.init()) create a new page instead of > expiring it? > > Thanks, > > Matt > -- > View this message in context: > http://www.nabble.com/Is-it-possible-to-prevent-page-expired--tf3646633.html#a10184774 > Sent from the Wicket - User mailing list archive at Nabble.com. > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by DB2 Express > Download DB2 Express C - the FREE version of DB2 express and take > control of your XML. No limits. Just data. Click to get it now. > http://sourceforge.net/powerbar/db2/ > _______________________________________________ > Wicket-user mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/wicket-user > ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Wicket-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/wicket-user
