You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Pills <pi...@hmcrecord.ch> on 2007/11/27 11:37:21 UTC

Manually handle post data

Hello,

I'm using an online payement system, and it sends me some data with the POST
method (transaction completed or not, amount payed, currency, etc...).

How can I retrieve this data with wicket? 

Thanks a lot ;)
-- 
View this message in context: http://www.nabble.com/Manually-handle-post-data-tf4880964.html#a13968500
Sent from the Wicket - User mailing list archive at Nabble.com.


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


Re: Manually handle post data

Posted by Igor Vaynberg <ig...@gmail.com>.
point the sytem to a bookmarkable page that has the (PageParameters
params) constructor mounted with querystring url coding strategy

then the posted params are in your page parameters

-igor


On Nov 27, 2007 5:24 AM, Pills <pi...@hmcrecord.ch> wrote:
>
>
> Michael Sparer wrote:
> >
> > I you really wanna do this manually, this code might help you: Map map =
> > ((WebRequestCycle)RequestCycle.get()).getRequest().getParameterMap();
> >
> > regards
> >
>
> For me it doesn't matter... This way is quite good, but if you've a better
> idea (the wicket way) I'll use it ;)
>
> --
> View this message in context: http://www.nabble.com/Manually-handle-post-data-tf4880964.html#a13970567
>
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

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


Re: Manually handle post data

Posted by Pills <pi...@hmcrecord.ch>.

Michael Sparer wrote:
> 
> I you really wanna do this manually, this code might help you: Map map =
> ((WebRequestCycle)RequestCycle.get()).getRequest().getParameterMap();
> 
> regards
> 

For me it doesn't matter... This way is quite good, but if you've a better
idea (the wicket way) I'll use it ;)

-- 
View this message in context: http://www.nabble.com/Manually-handle-post-data-tf4880964.html#a13970567
Sent from the Wicket - User mailing list archive at Nabble.com.


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


Re: Manually handle post data

Posted by Michael Sparer <mi...@gmx.at>.
I you really wanna do this manually, this code might help you: Map map =
((WebRequestCycle)RequestCycle.get()).getRequest().getParameterMap();

regards


Pills wrote:
> 
> Hello,
> 
> I'm using an online payement system, and it sends me some data with the
> POST method (transaction completed or not, amount payed, currency,
> etc...).
> 
> How can I retrieve this data with wicket? 
> 
> Thanks a lot ;)
> 


-----
Michael Sparer
http://talk-on-tech.blogspot.com
-- 
View this message in context: http://www.nabble.com/Manually-handle-post-data-tf4880964.html#a13968584
Sent from the Wicket - User mailing list archive at Nabble.com.


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