On Wed, 08 Aug 2012 16:02:00 -0300, Sam.Roberts <sam.robe...@inavero.com> 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 data while in the onActivate for the page I'm going.

If the POST data is a query string, just @Inject Request and use Request.getParameter() as you would do with GET parameters. This is the same you used HttpServletRequest instead of Tapestry's Request. If not @Inject HttpServletRequest and follow the example in the answer to this question: http://stackoverflow.com/questions/3831680/httpservletrequest-get-post-data

--
Thiago H. de Paula Figueiredo

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

Reply via email to