Hi, according to the spec, i think it is normal. It is written that you can have these mappings : - begining with '/' and ending with '/*' is for path mapping (not your case) - begining with '*.' is for extension mapping (not your case) - only '/' indicate defaut servlet of the application (not your case) - all other strings are used for EXACT matches only (so it is your case by default)
I'm sorry but i thing you can't mapp what you want. Why doesn't change you calls wich are :"aaa********" by "********.aaa" so you can map on '*.aaa' That's what i do. I use a specific extension for mapping to the right controler (servlet). Regards, Cédric ----- Original Message ----- From: "Mario Krolo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 08, 2002 8:18 PM Subject: filters > Hi, > > I have a few url patterns that I would like to > filter (for example /aaaone,/aaatwo,/aaathree). > They all start with the same three letters. > > If I do the following in my web.xml file my filter > kicks in and everything works fine: > > <filter-mapping> > <filter-name>MyFilter</filter-name> > <url-pattern>/aaaone</url-pattern> > </filter-mapping> > > <filter-mapping> > <filter-name>MyFilter</filter-name> > <url-pattern>/aaatwo</url-pattern> > </filter-mapping> > > <filter-mapping> > <filter-name>MyFilter</filter-name> > <url-pattern>/aaathree</url-pattern> > </filter-mapping> > > However, when I try > > <filter-mapping> > <filter-name>MyFilter</filter-name> > <url-pattern>/aaa*</url-pattern> > </filter-mapping> > > my filter doesn't do anything. It seems that > the /aaa* pattern is wrong. > > I was wondering why and how can I get it to work > with just one filter-mapping entry in web.xml. > > Thanks, > > Mario > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>