Re: post request with wicket

2011-05-13 Thread Igor Vaynberg
if your button submits a form it will be processed as a post. -igor On Fri, May 13, 2011 at 11:26 AM, wmike1...@gmail.com wrote: > I need to make a POST request when i click a button. I'm finding very sparce > documentation about how this side of wicket works. Any ideas? > > -- > View this messa

Re: post request with wicket

2011-05-13 Thread wmike1...@gmail.com
It's not with a form, it's for a soap request. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/post-request-with-wicket-tp3520861p3520891.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: post request with wicket

2011-05-13 Thread Igor Vaynberg
use something like apache commons httpclient for that. -igor On Fri, May 13, 2011 at 11:41 AM, wmike1...@gmail.com wrote: > It's not with a form, it's for a soap request. > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/post-request-with-wicket-tp3520861p35208

Re: post request with wicket

2011-05-13 Thread wmike1...@gmail.com
Thanks Igor. Just so I have this clear: There's no way to make the POST request straight from the client's browser? I need to have the client browser hit the wicket server which will then use straight java to create the POST request. Is this what you're thinking Igor? -mike -- View this message

Re: post request with wicket

2011-05-13 Thread Matthias Gasser
Or use a javascript to trigger (and create) the POST request. Or the way you proposed, will also work. Depending on what you're trying to achieve. Matthias Am 13.05.2011 um 20:59 schrieb wmike1...@gmail.com: > Thanks Igor. Just so I have this clear: > > There's no way to make the POST request

Re: post request with wicket

2011-05-13 Thread wmike1...@gmail.com
just add something like this into my markup file? # Send is this in keeping with wicket? I'm confused about this. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/post-request-with-wicket-tp3520861p3520964.html Sent from the Users forum mailing list archive at Nabbl

RE: post request with wicket

2011-05-16 Thread Hielke Hoeve
...@gmail.com [mailto:wmike1...@gmail.com] Sent: vrijdag 13 mei 2011 21:22 To: users@wicket.apache.org Subject: Re: post request with wicket just add something like this into my markup file? # Send is this in keeping with wicket? I'm confused about this. -- View this message in context:

RE: post request with wicket

2011-05-16 Thread wmike1...@gmail.com
I'm just calling a webservice, getting some data that I want to populate some fields on the page. The soap call as of now is on the server-side, inside an ajaxLink's onClick() method. Seems to be working fine. Why would building the request on the cilent be expensive? Expensive in terms of what?

RE: post request with wicket

2011-05-16 Thread Hielke Hoeve
:58 To: users@wicket.apache.org Subject: RE: post request with wicket I'm just calling a webservice, getting some data that I want to populate some fields on the page. The soap call as of now is on the server-side, inside an ajaxLink's onClick() method. Seems to be working fine. Why woul