Is there a way to use a Template in a route that both matches an initial pattern and provides the Resource the ability the Path Info from the Request?
For example,
Route uriRoute = router.attach("/users/{username}/tags/{Name}",
TagResource.class);
/users/fred/tags/abcdef/more/stuff
Class TagResource {
..
String pathInfo = request.getPathInfo(); // ==> "/more/stuff"
I've read
http://www.restlet.org/documentation/1.0/tutorial#part11
and not seen the answer there.
Thank you,
Leigh.

