Hi Martin, > I don't understand your question.
sorry :( I try to explain it again :) When I access my app with the url http://localhost:8080/app/?q=test all is fine. But when I submit a new query 'todo' then wicket somehow 1. calls the submit (ok) 2. redirects to HomePage (ok) 3. *but then again wicket is doing*** another POST+GET with empty q So 4 requests for one submit. Please also try this quickstart for wicket 1.4.17: https://gist.github.com/974349 and see if you get the same problem. Regards, Peter. ** post: onSubmit textField object:todo GET: HomePage ctor params: q = "[todo]" post: onSubmit textField object: GET: HomePage ctor params: q = "[]"
