Re: Illegal field modifiers in class ...: 0x12

2016-06-08 Thread Thiago H de Paula Figueiredo
On Wed, 08 Jun 2016 06:06:13 -0300, Nathan Quirynen wrote: Hey, Hi! In what package was the interface originally? Because Tapestry does bytecode rewriting in some defined packages; I know it does in package "components". Packages components, pages, base and mixins, to be complete. :)

Re: Updating persistent list in event handler

2016-06-08 Thread Thiago H de Paula Figueiredo
On Tue, 07 Jun 2016 18:34:54 -0300, Tim Hearn wrote: Hi all, Hi! Could you please post here the declaration of your persisted list field? I am calling an event handler which adds a member to a list that I have stored on a tapestry page. Unfortunately, the 'update' doesn't seem to stay

Re: Illegal field modifiers in class ...: 0x12

2016-06-08 Thread Nathan Quirynen
Hey, In what package was the interface originally? Because Tapestry does bytecode rewriting in some defined packages; I know it does in package "components". So this might be what is happening and then it is true that the interface should be moved outside of this package. Nathan On 08/06/16

Illegal field modifiers in class ...: 0x12

2016-06-08 Thread Lherm Nicolas
Hello, I was just upgrade my Tapestry app from Tapestry 5.2.6 to 5.3.8 when I noticed this error on start up: java.lang.ClassFormatError: Illegal field modifiers in class ... : 0x12 Moving the interface to a different package fixed the issue. But I'm not sure that it's the good issue.. Nicol