Re: Query string

2011-04-27 Thread Mark
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

Re: Query string

2011-04-27 Thread Mark
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

Re: Query string

2011-04-27 Thread Josh Canfield
@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

Re: Query string

2011-04-27 Thread Sven Homburg
@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