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<String>
configuration) {
configuration.add("/adminservices.*");
}
my web.xml
<servlet-mapping>
<servlet-name>httpinvoker-services</servlet-name>
<url-pattern>/adminservices/*</url-pattern>
</servlet-mapping>
And everything works fine!!
> El 9/6/2016, a las 19:49, Cezary Biernacki <[email protected]> escribió:
>
> 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 PM, Hendrik Grewe <[email protected]>
> wrote:
>
>> 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<String>
>> configuration){
>> configuration.add("/rest/.*");
>> }
>>
>> no longer has any effect. Tapestry also handles URLs under /rest/ so
>> our REST service is broken.
>>
>> Any one has had similar issues?
>>
>>
>> Tapestry Version 5.3.8
>>
>> Thanks in advance
>>
>> Hendrik
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: [email protected]
>> For additional commands, e-mail: [email protected]
>>
>>