On Wed, Apr 27, 2011 at 2:29 PM, Mark wrote:
> On Wed, Apr 27, 2011 at 1:30 PM, Tim Koop wrote:
>
>> I have some third party code that calls one of my Tapestry pages, passing
>> in some values in the query string. From in my Tapestry page (the Java
>> class), how can I retrieve this query strin
On Wed, Apr 27, 2011 at 1:30 PM, Tim Koop wrote:
> I have some third party code that calls one of my Tapestry pages, passing
> in some values in the query string. From in my Tapestry page (the Java
> class), how can I retrieve this query string?
>
>
Lets say you have something like:
http://local
@ActivationRequestParameter
It's not easy to find on the docs...
On Wed, Apr 27, 2011 at 11:30 AM, Tim Koop wrote:
> I have some third party code that calls one of my Tapestry pages, passing in
> some values in the query string. From in my Tapestry page (the Java class),
> how can I retrieve th
@Inject
private Request request;
somewhere in the page code
String parameter = request.getParameter("parameter-name");
with regards
Sven Homburg
Founder of the Chenille Kit Project
http://chenillekit.codehaus.org
2011/4/27 Tim Koop :
> I have some third party code that calls one