The solution, if anybody else should encounter this problem ist to put
the following into the onSubmitMethod
PageParameters p = new PageParameters();
p.add("myParameterName", <getModelObjectOfFormComponent()>);
getResponse().redirect(urlFor(MyTargetPage.class,
p).toString());
getRequestCycle().setRedirect(false);
and mount the page as bookmarkable page in Application.init().
Then the resulting URL is
http://myApp/MyTargetPage/myParameterName/value
Stefan
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]