Hi all, I want to generate links to a Tapestry page from another (non Tapestry) Java program and would like to know if there is any preferred way of doing that? Can I somehow use Tapestry's URI generation code directly? The page I need to link to has two arguments, say a type and a list of ids: app/page/type/1,3,6,9
Tapestry does not allow commas in the path segment, without its own encoding, so in case I cannot use Tapestry's URI generation, what then? Of course I can put the ids in different path segments, but I think of those as more of an hierarchical structure and thus it does not feel natural... app/page/type/1/3/6/9 I'm using T5.3.8. I would very much appreciate any thoughts or experience on the matter. Thank you, Jacob