Re: Tap 5.3.1: IllegalArgumentException

2011-12-23 Thread David Canteros
https://issues.apache.org/jira/browse/TAP5-1803
Done!

Regards


--
David Germán Canteros


2011/12/22 Lenny Primak 

> Thanks for confirming this.  It is definitely a bug.  Please file an JIRA
> issue.
>
> On Dec 22, 2011, at 4:21 PM, David Canteros wrote:
>
> > You are right... thanks again!  According to the UrlEncoderImpl the safe
> > chars are the following:
> >
> > *private final BitSet safe = new BitSet(128);
> >
> >{
> >markSafe("abcdefghijklmnopqrstuvwxyz");
> >markSafe("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
> >markSafe("01234567890-_.:");
> >}
> > *
> > I dont know the internal working of Tapestry that have this requirement,
> > but it should consider that some applications follow the standard, al
> least
> > with @ActivationRequestParameter.
> >
> >
> > --
> > David Germán Canteros
> >
> >
> > 2011/12/22 Lenny Primak 
> >
> >> Bet the syntax checker is a bit overzealous.  Unconfirmed though.
> >> I think you should file an issue.
> >>
> >> On Dec 22, 2011, at 3:56 PM, David Canteros wrote:
> >>
> >>> Mmm I have a doubt.. .why tapestry consider that asterisk symbol (*) is
> >>> unsafe?? (that symbol is my problem now).  The specification for URLs
> >> (RFC
> >>> 1738 , Dec. '94) says that
> >>> asterisk could be used unencoded...
> >>>
> >>
> >>
> >> -
> >> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> >> For additional commands, e-mail: users-h...@tapestry.apache.org
> >>
> >>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>


Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread Lenny Primak
Thanks for confirming this.  It is definitely a bug.  Please file an JIRA issue.

On Dec 22, 2011, at 4:21 PM, David Canteros wrote:

> You are right... thanks again!  According to the UrlEncoderImpl the safe
> chars are the following:
> 
> *private final BitSet safe = new BitSet(128);
> 
>{
>markSafe("abcdefghijklmnopqrstuvwxyz");
>markSafe("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
>markSafe("01234567890-_.:");
>}
> *
> I dont know the internal working of Tapestry that have this requirement,
> but it should consider that some applications follow the standard, al least
> with @ActivationRequestParameter.
> 
> 
> --
> David Germán Canteros
> 
> 
> 2011/12/22 Lenny Primak 
> 
>> Bet the syntax checker is a bit overzealous.  Unconfirmed though.
>> I think you should file an issue.
>> 
>> On Dec 22, 2011, at 3:56 PM, David Canteros wrote:
>> 
>>> Mmm I have a doubt.. .why tapestry consider that asterisk symbol (*) is
>>> unsafe?? (that symbol is my problem now).  The specification for URLs
>> (RFC
>>> 1738 , Dec. '94) says that
>>> asterisk could be used unencoded...
>>> 
>> 
>> 
>> -
>> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
>> For additional commands, e-mail: users-h...@tapestry.apache.org
>> 
>> 


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread David Canteros
You are right... thanks again!  According to the UrlEncoderImpl the safe
chars are the following:

*private final BitSet safe = new BitSet(128);

{
markSafe("abcdefghijklmnopqrstuvwxyz");
markSafe("ABCDEFGHIJKLMNOPQRSTUVWXYZ");
markSafe("01234567890-_.:");
}
*
I dont know the internal working of Tapestry that have this requirement,
but it should consider that some applications follow the standard, al least
with @ActivationRequestParameter.


--
David Germán Canteros


2011/12/22 Lenny Primak 

> Bet the syntax checker is a bit overzealous.  Unconfirmed though.
> I think you should file an issue.
>
> On Dec 22, 2011, at 3:56 PM, David Canteros wrote:
>
> > Mmm I have a doubt.. .why tapestry consider that asterisk symbol (*) is
> > unsafe?? (that symbol is my problem now).  The specification for URLs
> (RFC
> > 1738 , Dec. '94) says that
> > asterisk could be used unencoded...
> >
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>


Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread Lenny Primak
Bet the syntax checker is a bit overzealous.  Unconfirmed though.
I think you should file an issue.

On Dec 22, 2011, at 3:56 PM, David Canteros wrote:

> Mmm I have a doubt.. .why tapestry consider that asterisk symbol (*) is
> unsafe?? (that symbol is my problem now).  The specification for URLs (RFC
> 1738 , Dec. '94) says that
> asterisk could be used unencoded...
> 


-
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org



Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread David Canteros
Mmm I have a doubt.. .why tapestry consider that asterisk symbol (*) is
unsafe?? (that symbol is my problem now).  The specification for URLs (RFC
1738 , Dec. '94) says that
asterisk could be used unencoded...



--
David Germán Canteros


2011/12/22 David Canteros 

> Opps! at first glance it will be a problem for meThat url is
> automatically generated by other tool...
> I got back to 5.3 for the moment.
> Thanks Lenny!
>
> David
>
>
> --
> David Germán Canteros
>
>
>
> 2011/12/22 Lenny Primak 
>
>> This is one of the incompatible changes in 5.3.1.
>> You have to URLencode all parameters form now on.
>> I use the URLEncoder service.
>>
>> On Dec 22, 2011, at 3:05 PM, David Canteros wrote:
>>
>> > Hi guys!
>> > Today I have updated the libraries to tapestry 5.3.1 and my applications
>> > started to throw an unexpected exception *(this doesnt happen with
>> tapestry
>> > 5.3 or earlier*).
>> >
>> > I have a page called "login" that receives a variable called "key" by
>> URL,
>> > which looks like the following example:
>> >
>> > *
>> http://localhost:8080/mytool/login?key=diXmpfiW1uk*1w21wCIi*21312423*w*
>> >
>> > In the onActivate() method I have to catch the value of "key" to do some
>> > work. The code of Login.java is very short:
>> >
>> >   @ActivationRequestParameter
>> >private String key;
>> > @Inject
>> >private Logger log;
>> >
>> >public Object onActivate() {
>> >// Some work with "key" value
>> >}
>> >
>> > The exception happens when I try to access to the above URL, it occurs
>> > before to call onActivate  (i think). The exception is:
>> >
>> > [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected
>> runtime
>> > exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid;
>> the
>> > character '*' at position 12 is not valid. (Track ID: 1324576808506)
>> > org.apache.tapestry5.runtime.ComponentEventException:* Input string
>> > 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
>> > position 12 is not valid.*
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
>> > (and continues..)
>> >
>> > I think is a problem when tapestry tries to handle the URL to catch the
>> > value of  "key" ... someone have an idea of the problem?? This not
>> happens
>> > with tap 5.3...
>> > Regards!
>> > David
>> >
>> > Complete exception:
>> >
>> > [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected
>> runtime
>> > exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid;
>> the
>> > character '*' at position 12 is not valid. (Track ID: 1324576808506)
>> > org.apache.tapestry5.runtime.ComponentEventException: Input string
>> > 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
>> > position 12 is not valid.
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1048)
>> >at
>> >
>> org.apache.tapestry5.ioc.internal.OperationTrackerImpl.invoke(OperationTrackerImpl.java:74)
>> >at
>> >
>> org.apache.tapestry5.ioc.internal.PerThreadOperationTracker.invoke(PerThreadOperationTracker.java:87)
>> >at
>> >
>> org.apache.tapestry5.ioc.internal.RegistryImpl.invoke(RegistryImpl.java:1121)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementResourcesImpl.invoke(ComponentPageElementResourcesImpl.java:146)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.triggerContextEvent(ComponentPageElementImpl.java:1047)
>> >at
>> >
>> org.apache.tapestry5.internal.structure.InternalComponentResourcesImpl.triggerContextEvent(InternalComponentResourcesImpl.java:302)
>> >at
>> >
>> org.apache.tapestry5.internal.services.PageActivatorImpl.activatePage(PageActivatorImpl.java:34)
>> >at $PageActivator_7f2c9a23350.activatePage(Unknown Source)
>> >at
>> >
>> org.apache.tapestry5.internal.services.PageRenderRequestHandlerImpl.handle(PageRenderRequestHandlerImpl.java:57)
>> >at
>> >
>> org.apache.tapestry5.services.TapestryModule$37.handle(TapestryModule.java:2

Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread David Canteros
Opps! at first glance it will be a problem for meThat url is
automatically generated by other tool...
I got back to 5.3 for the moment.
Thanks Lenny!

David


--
David Germán Canteros


2011/12/22 Lenny Primak 

> This is one of the incompatible changes in 5.3.1.
> You have to URLencode all parameters form now on.
> I use the URLEncoder service.
>
> On Dec 22, 2011, at 3:05 PM, David Canteros wrote:
>
> > Hi guys!
> > Today I have updated the libraries to tapestry 5.3.1 and my applications
> > started to throw an unexpected exception *(this doesnt happen with
> tapestry
> > 5.3 or earlier*).
> >
> > I have a page called "login" that receives a variable called "key" by
> URL,
> > which looks like the following example:
> >
> > *http://localhost:8080/mytool/login?key=diXmpfiW1uk*1w21wCIi*21312423*w*
> >
> > In the onActivate() method I have to catch the value of "key" to do some
> > work. The code of Login.java is very short:
> >
> >   @ActivationRequestParameter
> >private String key;
> > @Inject
> >private Logger log;
> >
> >public Object onActivate() {
> >// Some work with "key" value
> >}
> >
> > The exception happens when I try to access to the above URL, it occurs
> > before to call onActivate  (i think). The exception is:
> >
> > [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected
> runtime
> > exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid;
> the
> > character '*' at position 12 is not valid. (Track ID: 1324576808506)
> > org.apache.tapestry5.runtime.ComponentEventException:* Input string
> > 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
> > position 12 is not valid.*
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
> > (and continues..)
> >
> > I think is a problem when tapestry tries to handle the URL to catch the
> > value of  "key" ... someone have an idea of the problem?? This not
> happens
> > with tap 5.3...
> > Regards!
> > David
> >
> > Complete exception:
> >
> > [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected
> runtime
> > exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid;
> the
> > character '*' at position 12 is not valid. (Track ID: 1324576808506)
> > org.apache.tapestry5.runtime.ComponentEventException: Input string
> > 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
> > position 12 is not valid.
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1048)
> >at
> >
> org.apache.tapestry5.ioc.internal.OperationTrackerImpl.invoke(OperationTrackerImpl.java:74)
> >at
> >
> org.apache.tapestry5.ioc.internal.PerThreadOperationTracker.invoke(PerThreadOperationTracker.java:87)
> >at
> >
> org.apache.tapestry5.ioc.internal.RegistryImpl.invoke(RegistryImpl.java:1121)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementResourcesImpl.invoke(ComponentPageElementResourcesImpl.java:146)
> >at
> >
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.triggerContextEvent(ComponentPageElementImpl.java:1047)
> >at
> >
> org.apache.tapestry5.internal.structure.InternalComponentResourcesImpl.triggerContextEvent(InternalComponentResourcesImpl.java:302)
> >at
> >
> org.apache.tapestry5.internal.services.PageActivatorImpl.activatePage(PageActivatorImpl.java:34)
> >at $PageActivator_7f2c9a23350.activatePage(Unknown Source)
> >at
> >
> org.apache.tapestry5.internal.services.PageRenderRequestHandlerImpl.handle(PageRenderRequestHandlerImpl.java:57)
> >at
> >
> org.apache.tapestry5.services.TapestryModule$37.handle(TapestryModule.java:2207)
> >at $PageRenderRequestHandler_7f2c9a23351.handle(Unknown Source)
> >at $PageRenderRequestHandler_7f2c9a2334a.handle(Unknown Source)
> >at
> >
> org.apache.tapestry5.internal.services.ComponentRequestHandlerTerminator.handlePageRender(ComponentRequestHandlerTerminator.java:48)
> >at
> >
> org.apache.tapestry5.services.InitializeActivePageName.handlePageRender(InitializeActivePageName.java:47)
> >at $ComponentRequestHandler_7f2c9a2334b.handlePageRender(Unknown
> Source)
> >at
> 

Re: Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread Lenny Primak
This is one of the incompatible changes in 5.3.1.
You have to URLencode all parameters form now on.
I use the URLEncoder service.

On Dec 22, 2011, at 3:05 PM, David Canteros wrote:

> Hi guys!
> Today I have updated the libraries to tapestry 5.3.1 and my applications
> started to throw an unexpected exception *(this doesnt happen with tapestry
> 5.3 or earlier*).
> 
> I have a page called "login" that receives a variable called "key" by URL,
> which looks like the following example:
> 
> *http://localhost:8080/mytool/login?key=diXmpfiW1uk*1w21wCIi*21312423*w*
> 
> In the onActivate() method I have to catch the value of "key" to do some
> work. The code of Login.java is very short:
> 
>   @ActivationRequestParameter
>private String key;
> @Inject
>private Logger log;
> 
>public Object onActivate() {
>// Some work with "key" value
>}
> 
> The exception happens when I try to access to the above URL, it occurs
> before to call onActivate  (i think). The exception is:
> 
> [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected runtime
> exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the
> character '*' at position 12 is not valid. (Track ID: 1324576808506)
> org.apache.tapestry5.runtime.ComponentEventException:* Input string
> 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
> position 12 is not valid.*
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
> (and continues..)
> 
> I think is a problem when tapestry tries to handle the URL to catch the
> value of  "key" ... someone have an idea of the problem?? This not happens
> with tap 5.3...
> Regards!
> David
> 
> Complete exception:
> 
> [ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected runtime
> exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the
> character '*' at position 12 is not valid. (Track ID: 1324576808506)
> org.apache.tapestry5.runtime.ComponentEventException: Input string
> 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
> position 12 is not valid.
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1048)
>at
> org.apache.tapestry5.ioc.internal.OperationTrackerImpl.invoke(OperationTrackerImpl.java:74)
>at
> org.apache.tapestry5.ioc.internal.PerThreadOperationTracker.invoke(PerThreadOperationTracker.java:87)
>at
> org.apache.tapestry5.ioc.internal.RegistryImpl.invoke(RegistryImpl.java:1121)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementResourcesImpl.invoke(ComponentPageElementResourcesImpl.java:146)
>at
> org.apache.tapestry5.internal.structure.ComponentPageElementImpl.triggerContextEvent(ComponentPageElementImpl.java:1047)
>at
> org.apache.tapestry5.internal.structure.InternalComponentResourcesImpl.triggerContextEvent(InternalComponentResourcesImpl.java:302)
>at
> org.apache.tapestry5.internal.services.PageActivatorImpl.activatePage(PageActivatorImpl.java:34)
>at $PageActivator_7f2c9a23350.activatePage(Unknown Source)
>at
> org.apache.tapestry5.internal.services.PageRenderRequestHandlerImpl.handle(PageRenderRequestHandlerImpl.java:57)
>at
> org.apache.tapestry5.services.TapestryModule$37.handle(TapestryModule.java:2207)
>at $PageRenderRequestHandler_7f2c9a23351.handle(Unknown Source)
>at $PageRenderRequestHandler_7f2c9a2334a.handle(Unknown Source)
>at
> org.apache.tapestry5.internal.services.ComponentRequestHandlerTerminator.handlePageRender(ComponentRequestHandlerTerminator.java:48)
>at
> org.apache.tapestry5.services.InitializeActivePageName.handlePageRender(InitializeActivePageName.java:47)
>at $ComponentRequestHandler_7f2c9a2334b.handlePageRender(Unknown Source)
>at
> org.tynamo.security.SecurityComponentRequestFilter.handlePageRender(SecurityComponentRequestFilter.java:50)
>at $ComponentRequestFilter_7f2c9a23348.handlePageRender(Unknown Source)
>at $ComponentRequestHandler_7f2c9a2334b.handlePageRender(Unknown Source)
>at $ComponentRequestHandler_7f2c9a23311.handlePageRender(Unknown Source)
>at
> org.apache.tapestry5.internal.services.PageRenderDispatcher.dispatch(PageRenderDispatcher.java:45)
>at $Dispatcher_7f2c9a23314.dispatch(Unknown Source)
>

Tap 5.3.1: IllegalArgumentException

2011-12-22 Thread David Canteros
Hi guys!
Today I have updated the libraries to tapestry 5.3.1 and my applications
started to throw an unexpected exception *(this doesnt happen with tapestry
5.3 or earlier*).

I have a page called "login" that receives a variable called "key" by URL,
which looks like the following example:

*http://localhost:8080/mytool/login?key=diXmpfiW1uk*1w21wCIi*21312423*w*

In the onActivate() method I have to catch the value of "key" to do some
work. The code of Login.java is very short:

   @ActivationRequestParameter
private String key;
 @Inject
private Logger log;

public Object onActivate() {
// Some work with "key" value
}

The exception happens when I try to access to the above URL, it occurs
before to call onActivate  (i think). The exception is:

[ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected runtime
exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the
character '*' at position 12 is not valid. (Track ID: 1324576808506)
org.apache.tapestry5.runtime.ComponentEventException:* Input string
'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
position 12 is not valid.*
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
(and continues..)

I think is a problem when tapestry tries to handle the URL to catch the
value of  "key" ... someone have an idea of the problem?? This not happens
with tap 5.3...
Regards!
David

Complete exception:

[ERROR] PricetoolModule.PricetoolRequestExceptionHandler Unexpected runtime
exception: Input string 'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the
character '*' at position 12 is not valid. (Track ID: 1324576808506)
org.apache.tapestry5.runtime.ComponentEventException: Input string
'diXmpfiW1uk*1w21wCIi*21312423*w' is not valid; the character '*' at
position 12 is not valid.
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl.processEventTriggering(ComponentPageElementImpl.java:1130)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl.access$3200(ComponentPageElementImpl.java:61)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1051)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl$5.invoke(ComponentPageElementImpl.java:1048)
at
org.apache.tapestry5.ioc.internal.OperationTrackerImpl.invoke(OperationTrackerImpl.java:74)
at
org.apache.tapestry5.ioc.internal.PerThreadOperationTracker.invoke(PerThreadOperationTracker.java:87)
at
org.apache.tapestry5.ioc.internal.RegistryImpl.invoke(RegistryImpl.java:1121)
at
org.apache.tapestry5.internal.structure.ComponentPageElementResourcesImpl.invoke(ComponentPageElementResourcesImpl.java:146)
at
org.apache.tapestry5.internal.structure.ComponentPageElementImpl.triggerContextEvent(ComponentPageElementImpl.java:1047)
at
org.apache.tapestry5.internal.structure.InternalComponentResourcesImpl.triggerContextEvent(InternalComponentResourcesImpl.java:302)
at
org.apache.tapestry5.internal.services.PageActivatorImpl.activatePage(PageActivatorImpl.java:34)
at $PageActivator_7f2c9a23350.activatePage(Unknown Source)
at
org.apache.tapestry5.internal.services.PageRenderRequestHandlerImpl.handle(PageRenderRequestHandlerImpl.java:57)
at
org.apache.tapestry5.services.TapestryModule$37.handle(TapestryModule.java:2207)
at $PageRenderRequestHandler_7f2c9a23351.handle(Unknown Source)
at $PageRenderRequestHandler_7f2c9a2334a.handle(Unknown Source)
at
org.apache.tapestry5.internal.services.ComponentRequestHandlerTerminator.handlePageRender(ComponentRequestHandlerTerminator.java:48)
at
org.apache.tapestry5.services.InitializeActivePageName.handlePageRender(InitializeActivePageName.java:47)
at $ComponentRequestHandler_7f2c9a2334b.handlePageRender(Unknown Source)
at
org.tynamo.security.SecurityComponentRequestFilter.handlePageRender(SecurityComponentRequestFilter.java:50)
at $ComponentRequestFilter_7f2c9a23348.handlePageRender(Unknown Source)
at $ComponentRequestHandler_7f2c9a2334b.handlePageRender(Unknown Source)
at $ComponentRequestHandler_7f2c9a23311.handlePageRender(Unknown Source)
at
org.apache.tapestry5.internal.services.PageRenderDispatcher.dispatch(PageRenderDispatcher.java:45)
at $Dispatcher_7f2c9a23314.dispatch(Unknown Source)
at $Dispatcher_7f2c9a2330e.dispatch(Unknown Source)
at
org.apache.tapestry5.services.TapestryModule$RequestHandlerTerminator.service(TapestryModule.java:302)
at
org.apache.tapestry5.internal.services.RequestErrorFilter.service(RequestErrorFilter.java:26)
at $RequestHandler_7f2c9a2330f.service(Unknown Source)
at
org.ap