Re: How to submit form to external page sending parameters by post, please Help

2008-10-22 Thread Pablo Scagno
Thanks for your response, I've used the second choice...it was very helpful Bye Pablo -- From: Jeremy Thomerson [EMAIL PROTECTED] Sent: Tuesday, October 21, 2008 10:51 PM To: users@wicket.apache.org Subject: Re: How to submit form to external page

How to submit form to external page sending parameters by post, please Help

2008-10-21 Thread Pablo Scagno
Hi, I'm trying to submit a form to Paypal but I don't know how I can do this. I have a wicket form with all the fields that I need to submit but when I redirect the page to paypal I can't send the form fields. I can't put the parameters in the querystring, I must send them by post. This is my

Re: How to submit form to external page sending parameters by post, please Help

2008-10-21 Thread Jeremy Thomerson
Perhaps one of the following: 1. Don't use wicket Form - use web markup containers of some sort and attribute modifiers to output a form that actually posts directly to the paypal site. (In other words - generate a real form with action= https://www.sandbox.paypal.com.) 2. OR