Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-29 Thread victorTrapiello
that´s is goign to be my next step, can I put directly in the wicket form post to pay pal or i there any method to set the post in wicket¿? thanks Steave Steve Swinsburg-3 wrote: Why not process your form normally via Wicket, then make a POST request to PayPal? cheers, Steve On

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-29 Thread McIlwee, Craig
Have you tried using firebug to see what the POSTed values are? That may shed some light on the problem... _ From: victorTrapiello [mailto:vic...@trapiello.net] To: users@wicket.apache.org Sent: Mon, 29 Mar 2010 02:19:29 -0400 Subject: Re: PROBLEM WITH PAY PAL INTEGRATION that´s

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread James Perry
It not a wicket issue. You have two input elements with the same name: 1.input type=text name=item_name 2.input type=text name=item_name wicket:id=itemName Remove the line 1 and voila! Best, James. On 28 March 2010 22:06, victorTrapiello vic...@trapiello.net wrote: Hello guys! I´m trying to

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread victorTrapiello
hahahha it is not as easy as you think, I just put these 2 lines to show how it is in the reallity and how I´m trying to do with wickets, I only have this one on in my progrmam input type=text name=item_name wicket:id=itemName msc65jap wrote: It not a wicket issue. You have two input

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread Martin Makundi
Do you use POST or GET ? ** Martin 2010/3/29 victorTrapiello vic...@trapiello.net: hahahha it is not as easy as you think, I just put these 2 lines to show how it is in the reallity and how I´m trying to do with wickets, I only have this one on in my progrmam input type=text name=item_name

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread victorTrapiello
Yes I use POST, I´m not using any wicket form, I just set to my value a Tesxt fiels and then I add the wicket in this form, but as I said bfore it seems the wicket is lost by the way to pay pal because I appears empty, I´m thinking now maybe is something related with the pay pal´s

Re: PROBLEM WITH PAY PAL INTEGRATION

2010-03-28 Thread Steve Swinsburg
Why not process your form normally via Wicket, then make a POST request to PayPal? cheers, Steve On 29/03/2010, at 4:49 PM, victorTrapiello wrote: Yes I use POST, I´m not using any wicket form, I just set to my value a Tesxt fiels and then I add the wicket in this form, but as I said