Re: How to write a filter in web.xml to accept partially a URL ?

2020-04-26 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Gilbert, On 4/25/20 08:47, Gilbert Soucy wrote: > Hello, > > I am new to tomcat and I need to filter the URLs to accept all > clients for part of a URL and reject for all clients another part > of this URL. > > In details, I want: > >

Re: How to write a filter in web.xml to accept partially a URL ?

2020-04-25 Thread Frank Tornack
Hi Gilbert, maybe you have more luck with the security-constraint in tomcat. kindly Frank Am Samstag, den 25.04.2020, 08:47 -0400 schrieb Gilbert Soucy: > Hello, > > I am new to tomcat and I need to filter the URLs to accept all > clients for > part of a URL and reject for all clients another

How to write a filter in web.xml to accept partially a URL ?

2020-04-25 Thread Gilbert Soucy
Hello, I am new to tomcat and I need to filter the URLs to accept all clients for part of a URL and reject for all clients another part of this URL. In details, I want: /abc/def/xyz/* : accepts all /abc/def/*: reject if URL does not match /abc/def/xyz* I found that the