Re: posting form outside wicket

2010-05-02 Thread Joe Fawzy
OK, got it
thanks
Joe

On Mon, May 3, 2010 at 1:22 AM, Jeremy Thomerson
wrote:

> Wicket is for creating web applications - not consuming them.  So, you
> handle all of the form processing, validation, etc, all through Wicket.
> Then
> in your onSubmit, you need to consume a different application.  Wicket's
> not
> built for that part.  HttpClient is.
>
> --
> Jeremy Thomerson
> http://www.wickettraining.com
>
>
>
> On Sun, May 2, 2010 at 5:19 PM, Joe Fawzy  wrote:
>
> > Hi dear
> > thanks for the prompt reply
> > aren't there any wicket method to do that?
> > then i have to cycle through all my form fields and get their params name
> > and values ,build a string ,make the request
> > OR there is a shortcut
> > thanks
> > Joe
> >
> > On Mon, May 3, 2010 at 1:14 AM, Igor Vaynberg  > >wrote:
> >
> > > use commons http client to issue an http post to the external server
> > >
> > > -igor
> > >
> > >
> > > On Sun, May 2, 2010 at 3:10 PM, Joe Fawzy  wrote:
> > > > Hi
> > > > i have a form that i want to post its data to a page outside wicket ,
> > > > actually on other server ,done in ruby
> > > > i wanna make use of wicket form handling,model binding and
> > validation...
> > > > etc. and when i click submit , the data sent to the other page using
> a
> > > post
> > > > thanks in advance
> > > > Joe
> > > >
> > >
> > > -
> > > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > > For additional commands, e-mail: users-h...@wicket.apache.org
> > >
> > >
> >
>


Re: posting form outside wicket

2010-05-02 Thread Jeremy Thomerson
Wicket is for creating web applications - not consuming them.  So, you
handle all of the form processing, validation, etc, all through Wicket. Then
in your onSubmit, you need to consume a different application.  Wicket's not
built for that part.  HttpClient is.

--
Jeremy Thomerson
http://www.wickettraining.com



On Sun, May 2, 2010 at 5:19 PM, Joe Fawzy  wrote:

> Hi dear
> thanks for the prompt reply
> aren't there any wicket method to do that?
> then i have to cycle through all my form fields and get their params name
> and values ,build a string ,make the request
> OR there is a shortcut
> thanks
> Joe
>
> On Mon, May 3, 2010 at 1:14 AM, Igor Vaynberg  >wrote:
>
> > use commons http client to issue an http post to the external server
> >
> > -igor
> >
> >
> > On Sun, May 2, 2010 at 3:10 PM, Joe Fawzy  wrote:
> > > Hi
> > > i have a form that i want to post its data to a page outside wicket ,
> > > actually on other server ,done in ruby
> > > i wanna make use of wicket form handling,model binding and
> validation...
> > > etc. and when i click submit , the data sent to the other page using a
> > post
> > > thanks in advance
> > > Joe
> > >
> >
> > -
> > To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> > For additional commands, e-mail: users-h...@wicket.apache.org
> >
> >
>


Re: posting form outside wicket

2010-05-02 Thread Joe Fawzy
Hi dear
thanks for the prompt reply
aren't there any wicket method to do that?
then i have to cycle through all my form fields and get their params name
and values ,build a string ,make the request
OR there is a shortcut
thanks
Joe

On Mon, May 3, 2010 at 1:14 AM, Igor Vaynberg wrote:

> use commons http client to issue an http post to the external server
>
> -igor
>
>
> On Sun, May 2, 2010 at 3:10 PM, Joe Fawzy  wrote:
> > Hi
> > i have a form that i want to post its data to a page outside wicket ,
> > actually on other server ,done in ruby
> > i wanna make use of wicket form handling,model binding and validation...
> > etc. and when i click submit , the data sent to the other page using a
> post
> > thanks in advance
> > Joe
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


Re: posting form outside wicket

2010-05-02 Thread Igor Vaynberg
use commons http client to issue an http post to the external server

-igor


On Sun, May 2, 2010 at 3:10 PM, Joe Fawzy  wrote:
> Hi
> i have a form that i want to post its data to a page outside wicket ,
> actually on other server ,done in ruby
> i wanna make use of wicket form handling,model binding and validation...
> etc. and when i click submit , the data sent to the other page using a post
> thanks in advance
> Joe
>

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



posting form outside wicket

2010-05-02 Thread Joe Fawzy
Hi
i have a form that i want to post its data to a page outside wicket ,
actually on other server ,done in ruby
i wanna make use of wicket form handling,model binding and validation...
etc. and when i click submit , the data sent to the other page using a post
thanks in advance
Joe