Re: 5.4 PageActivationLink bug

2014-10-08 Thread George Christman
I'm sorry, I probably should have posted more code. I'm using @Inject private PageRenderLinkSource linksouce; On Wed, Oct 8, 2014 at 1:03 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Wed, 08 Oct 2014 13:38:24 -0300, Lance Java > wrote: > > Also, LinkSource is in an "inter

Re: 5.4 PageActivationLink bug

2014-10-08 Thread Thiago H de Paula Figueiredo
On Wed, 08 Oct 2014 13:38:24 -0300, Lance Java wrote: Also, LinkSource is in an "internal" package so isn't part of the public API. Yep. The public API one is PageRenderLinkSource. -- Thiago H. de Paula Figueiredo Tapestry, Java and Hibernate consultant and developer http://machina.com.br

Re: 5.4 PageActivationLink bug

2014-10-08 Thread Lance Java
Also, LinkSource is in an "internal" package so isn't part of the public API.

Re: 5.4 PageActivationLink bug

2014-10-08 Thread George Christman
Okay great, thanks Lance. On Wed, Oct 8, 2014 at 10:37 AM, Lance Java wrote: > It seems that LinkSource invokes onPassivate() which (I assume) is where > the request parameter comes from > > from the javadocs: > > Creates a render link for the page. If an activation context is supplied > then th

Re: 5.4 PageActivationLink bug

2014-10-08 Thread Lance Java
It seems that LinkSource invokes onPassivate() which (I assume) is where the request parameter comes from from the javadocs: Creates a render link for the page. If an activation context is supplied then that context is built into the URI. If no activation context is supplied, then the activation

Re: 5.4 PageActivationLink bug

2014-10-08 Thread George Christman
I'm not sure, I haven't had a case where I've been able to test that. On Tue, Oct 7, 2014 at 4:58 PM, Lance Java wrote: > Sounds like a bug to me. Does the same happen for a ? > On 7 Oct 2014 17:44, "George Christman" wrote: > > > Does anybody know if this is a bug or proper behavior? > > > >

Re: 5.4 PageActivationLink bug

2014-10-07 Thread Lance Java
Sounds like a bug to me. Does the same happen for a ? On 7 Oct 2014 17:44, "George Christman" wrote: > Does anybody know if this is a bug or proper behavior? > > On Sat, Oct 4, 2014 at 8:55 PM, George Christman > wrote: > > > Hi guys, I think I found a bug in 5.4. > > > > I have the following p

Re: 5.4 PageActivationLink bug

2014-10-07 Thread George Christman
Does anybody know if this is a bug or proper behavior? On Sat, Oct 4, 2014 at 8:55 PM, George Christman wrote: > Hi guys, I think I found a bug in 5.4. > > I have the following page, Vehicle.class and within it a Request Parameter > called "key" > > public class Vehicle.class { > > @ActivationR

5.4 PageActivationLink bug

2014-10-04 Thread George Christman
Hi guys, I think I found a bug in 5.4. I have the following page, Vehicle.class and within it a Request Parameter called "key" public class Vehicle.class { @ActivationRequestParameter(value = "_key") private String activationKey; } I also have an email service which is called by a method