Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Erik van Oosten
Wicket will always do a redirect after the POST. So the information you are seeing is from the second request, which is a GET. You can install LiveHTTPHeaders in FireFox. There is something similar for IE. Regards, Erik. Lowell Kirsh wrote: I have a wicket form which is supposed to be

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Lowell Kirsh
Thanks for the advice. That is unfortunate in my case. But that's a bit off topic from this, so I will post another message. On 5/10/07, Erik van Oosten [EMAIL PROTECTED] wrote: Wicket will always do a redirect after the POST. So the information you are seeing is from the second request, which

Re: [Wicket-user] POST form submissions being converted to GETs

2007-05-11 Thread Eelco Hillenius
It's a great pattern in general, as you never have to worry again about users re-submitting the form when they press refresh or the back button. If you want to break out in specific cases, RequestCycle.get().setRedirect(false) in your form's onSubmit method should do the trick. If you don't want