Re: post a form to external site statelessly

2010-01-13 Thread Stijn Maller
Just use form action=http://your.other.site; instead of a wicket form component, good old html... :o) 2010/1/13 Afsaneh Abouie afsaneh.abo...@gmail.com Hello everyone, I want to post my form to an external and non wicket site and as I read in mail list, it can be done with ajax but my form

Re: post a form to external site statelessly

2010-01-13 Thread Afsaneh Abouie
thanks, but I want to do some actions in model when user pressed submit button then post generated params to external site -- Regards, Afsaneh Abouie

Re: post a form to external site statelessly

2010-01-13 Thread Afsaneh Abouie
thanks, but I want to do some actions in model when user pressed submit button then post generated params to external site -- Regards, Afsaneh Abouie

Re: post a form to external site statelessly

2010-01-13 Thread Afsaneh Abouie
thanks, but I want to do some actions in model when user pressed submit button then post generated params to external site On Wed, Jan 13, 2010 at 12:32 PM, Stijn Maller stijn.mal...@gmail.comwrote: Just use form action=http://your.other.site; instead of a wicket form component, good old

Re: post a form to external site statelessly

2010-01-13 Thread Ernesto Reinaldo Barreiro
I haven´t tried it myself but can´t you use WebRequestCycle.get().setRequestTarget(new RedirectRequestTarget(URL...)); Ernesto On Wed, Jan 13, 2010 at 10:57 AM, Afsaneh Abouie afsaneh.abo...@gmail.comwrote: thanks, but I want to do some actions in model when user pressed submit button then

Re: post a form to external site statelessly

2010-01-13 Thread Stijn Maller
Or you could do that... :o) Depends on who has to treat the response from the external site. Your Server? Or Your client? 2010/1/13 Ernesto Reinaldo Barreiro reier...@gmail.com I haven´t tried it myself but can´t you use WebRequestCycle.get().setRequestTarget(new

post a form to external site statelessly

2010-01-12 Thread Afsaneh Abouie
Hello everyone, I want to post my form to an external and non wicket site and as I read in mail list, it can be done with ajax but my form and panels are stateless so I can't use ajax help me please -- Regards, Afsaneh Abouie