Hello,

My Wicket Application code is deployed as a war file in JBOSS application
server.
I am raising a POST request from vbscript.

But, always My request post parameters are empty in my HomePage.java.  If I
use the GET request the I can get the query string values from page
parameters.

Apache wicket release is 1.5.5.

Any help is highly appreciated.

Sample code

public class HomePage extends AbstractPage {

        public HomePage(final PageParameters parameters) {
                super(parameters);
               RequestCycle rc = RequestCycle.get();
                Request rq = rc.getRequest();
                IRequestParameters postParams = rq.getPostParameters();

Here I am not getting any value in the post parameters.

Thanks
Senthil

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/POST-parameters-are-empty-in-Apache-wicket-tp4675266.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to