Re: IgnoredPathsFilter no longer working with Wildfly10

2016-06-09 Thread Carlos Montero Canabal
I’m using Tapestry 5.4.0 and Tapestry 5.4.1 and I have WS with httpinvoker and my app module have the code: public static void contributeIgnoredPathsFilter(final Configuration configuration) { configuration.add("/adminservices.*"); } my web.xml

Re: IgnoredPathsFilter no longer working with Wildfly10

2016-06-09 Thread Cezary Biernacki
I don't use Wildfly, so I can only speculate, but maybe values returned for servletPath and pathInfo from HttpServletRequest are subtly different. Try debugging service() method in org.apache.tapestry5.internal.services.IgnoredPathsFilter class. Best regards, Cezary On Thu, Jun 9, 2016 at 5:59

IgnoredPathsFilter no longer working with Wildfly10

2016-06-09 Thread Hendrik Grewe
Hi! We recently upgraded our wildfly from 9.0.1.Final to 10.0.0.Final Since then the IgnoredPathFilter within AppModule.java public static void contributeIgnoredPathsFilter(Configuration configuration){ configuration.add("/rest/.*"); } no longer has any effect. Tapestry

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

2016-06-09 Thread Thiago H de Paula Figueiredo
On Thu, 09 Jun 2016 05:44:49 -0300, Lherm Nicolas wrote: Hi, Hi! XhrSensitiveBlocItf.java is an interface which is in the package "base", when I put it in internal it works. The base package is also controlled by Tapestry and anything inside it has its bytecode

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

2016-06-09 Thread Lherm Nicolas
Hi, This is the original error : java.lang.ClassFormatError Illegal field modifiers in class fr/msa/agora/bt1tarif/websaisi/base/XhrSensitiveBlocItf: 0x12 XhrSensitiveBlocItf.java is an interface which is in the package "base", when I put it in internal it works. Is it the right solution