Re: POST request shows the parameters in the URL of result page

2016-08-19 Thread senlog80
Actually, we are calling the UserDetailPage.java from HomePage.java. UserDetailPage.java contains the instantiation of UserForm.java which extends the Wicket Form class. This UserForm.java stores the post parameters into a model object and retrieves back whenever it is needed. HomePage.java

Re: POST request shows the parameters in the URL of result page

2016-08-19 Thread Martin Grigorov
Hi, Sorry, but you are giving us partial information and it is hard for us to guess what you are doing there. It is still not clear how you use UserForm and whether you really need it. >From your previous email I understood that you want to submit a form in HomePage and get its data in

Re: POST request shows the parameters in the URL of result page

2016-08-19 Thread senlog80
Thanks Martin.. Could you provide a sample code if possible or any reference for calling the html instead of wicket Form Is it like the following statement has to be replaced from HomePage.java to HomePage.html "throw new RestartResponseException(UserDetailPage.class, pp);" --> Actually, the

Re: POST request shows the parameters in the URL of result page

2016-08-17 Thread Martin Grigorov
Hi, On Wed, Aug 17, 2016 at 2:58 PM, senlog80 wrote: > I have a form on my page, which when submitted goes the next page, but all > the form's fields appear as URL parameters in the resulting page. I want > to > hide all the parameters in the url, so that I am using POST

POST request shows the parameters in the URL of result page

2016-08-17 Thread senlog80
I have a form on my page, which when submitted goes the next page, but all the form's fields appear as URL parameters in the resulting page. I want to hide all the parameters in the url, so that I am using POST request but still it shows the parameters in the resulting page. My sample code