Re: Problem with URL mapping

2012-06-23 Thread Konstantin Kolinko
2012/6/23 : > I see. Thanks a lot. One more question: why request URL with backslash > treated as illegal by default? > > Konstantin Kolinko писал 2012-06-23 12:03: >> >> 2012/6/23  : >>> >>> No, my application has context path "/" so application should handle >>> everything at root and it does as

Re: Problem with URL mapping

2012-06-23 Thread comm
I see. Thanks a lot. One more question: why request URL with backslash treated as illegal by default? Konstantin Kolinko писал 2012-06-23 12:03: 2012/6/23 : No, my application has context path "/" so application should handle everything at root and it does as expected but only one character

Re: Problem with URL mapping

2012-06-23 Thread Konstantin Kolinko
2012/6/23 : > No, my application has context path "/" so application should handle > everything at root and it does as expected but only one character breaks > something. I know that the character "\" is not path separator but for some > reason it treated specially. > > The problem is that I can h

Re: Problem with URL mapping

2012-06-23 Thread comm
No, my application has context path "/" so application should handle everything at root and it does as expected but only one character breaks something. I know that the character "\" is not path separator but for some reason it treated specially. The problem is that I can handle any request ex

Re: Problem with URL mapping

2012-06-22 Thread Konstantin Kolinko
2012/6/22 : > Hello all > > I have problem with URL mappings with embedded tomcat 7 > > I whant to handle all requests to my applications. I added filter with > mapping /*  for my application with context path "/" > >    FilterMap errorFilter = new FilterMap(); >    errorFilter.setFilterName("erro

Problem with URL mapping

2012-06-22 Thread comm
Hello all I have problem with URL mappings with embedded tomcat 7 I whant to handle all requests to my applications. I added filter with mapping /* for my application with context path "/" FilterMap errorFilter = new FilterMap(); errorFilter.setFilterName("errors-filter"); errorF