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");
errorFilter.addURLPattern("/*");
ctx.addFilterMap(errorFilter);
This works fine in most cases except the cases when "\" character is in
the request URL.
For examle
localhost:9999/test/path handled correctly, but
localhost:9999/test\path is not handled and server just returns
blank page
Any ideas?
Kind regards,
Sergey Mashkov
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]