RE: Generate link to Tapestry page from another program

2015-05-12 Thread Poder, Jacob
to Tapestry page from another program On Wed, 06 May 2015 12:00:07 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: I'll consider overriding the URLEncoder service, but I'm not too keen on that as it will require me to check for changes in the std implementation on each Tapestry upgrade

Re: Generate link to Tapestry page from another program

2015-05-12 Thread Thiago H de Paula Figueiredo
On Tue, 12 May 2015 06:11:28 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: It would because my own URLEncoder service would be based on the current Tapestry one, and in case the Tapestry one changes (bug, performance, whatever...) I would want to incorporate those changes also.

Re: Generate link to Tapestry page from another program

2015-05-11 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 12:00:07 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: I'll consider overriding the URLEncoder service, but I'm not too keen on that as it will require me to check for changes in the std implementation on each Tapestry upgrade. No, it won't. Why would it?

Re: SV: Generate link to Tapestry page from another program

2015-05-10 Thread Chung Khanh Duy
[mailingl...@nesluop.dk] Sendt: 9. maj 2015 19:30 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program Something like this answer: http://stackoverflow.com/a/15849972 On Sat, May 9, 2015 at 5:38 PM, Poder, Jacob jacob.po...@thermofisher.com wrote

Re: SV: Generate link to Tapestry page from another program

2015-05-10 Thread mailingl...@j-b-s.de
Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 19:30 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program Something like this answer: http://stackoverflow.com/a/15849972 On Sat, May 9, 2015 at 5:38 PM, Poder, Jacob jacob.po...@thermofisher.com wrote

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
? Fra: Chris Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 19:30 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program Something like this answer: http://stackoverflow.com/a/15849972 On Sat, May 9, 2015 at 5:38 PM, Poder, Jacob

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
? Fra: Chris Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 16:52 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program I was thinking that you could pass the list of ids as a single multivalue parameter and then use request.getParameterValues

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
Sorry, I don't follow, how can I pass the list of ids as a single multivalue parameter? Fra: Chris Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 16:52 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program I was thinking

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 6. maj 2015 16:39 To: Tapestry users Subject: Re: Generate link to Tapestry page from another program On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: Tapestry will throw

Re: Generate link to Tapestry page from another program

2015-05-09 Thread Chris Poulsen
Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 16:52 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program I was thinking that you could pass the list of ids as a single multivalue parameter and then use request.getParameterValues to retrieve the values

Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
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:

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
Tapestry will throw an exception in URLEncoderImpl.decode before even getting to onActivate in my page, so I can't do that. -Original Message- From: Chris Poulsen [mailto:mailingl...@nesluop.dk] Sent: 6. maj 2015 14:59 To: Tapestry users Subject: Re: Generate link to Tapestry page from

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: Tapestry will throw an exception in URLEncoderImpl.decode before even getting to onActivate in my page, so I can't do that. You can override the URLEncoder service with your own implementation if you

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Thiago H de Paula Figueiredo
On Wed, 06 May 2015 09:58:41 -0300, Chris Poulsen mailingl...@nesluop.dk wrote: you can also work with the request parameters in the old fashioned way by injecting the request You could combine the suggestion above with a page which will redirect to the correct page and

Re: Generate link to Tapestry page from another program

2015-05-06 Thread Chris Poulsen
you can also work with the request parameters in the old fashioned way by injecting the request On Wed, May 6, 2015 at 2:45 PM, Poder, Jacob jacob.po...@thermofisher.com wrote: Hi all, I want to generate links to a Tapestry page from another (non Tapestry) Java program and would like to know

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 6. maj 2015 16:39 To: Tapestry users Subject: Re: Generate link to Tapestry page from another program On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: Tapestry will throw an exception