Re: Tapestry get Post Data

2012-08-09 Thread Howard Lewis Ship
To clarify, onActivate() is an event handler method, and @RequestParameter is only honored for event handler methods. beginRender(), afterRender(), etc. are render phase methods, @RequestParameter would not work there. On Wed, Aug 8, 2012 at 7:03 PM, Lance Java wrote: > You can also use @RequestP

Re: Tapestry get Post Data

2012-08-08 Thread Lance Java
You can also use @RequestParameter on parameters in render phase methods. eg void onActivate(@RequestParameter("foo") String foo) { ... } Normal tapestry coercion rules apply for types

Re: Tapestry get Post Data

2012-08-08 Thread Thiago H de Paula Figueiredo
On Wed, 08 Aug 2012 16:02:00 -0300, Sam.Roberts wrote: I have a page that I am linking to from outside (a different webapp) to Tapestry and I want to pass auth data and some other information along via POST data rather than GET data, but I can't really figure out how to access the POST da