I have a website running on a server with Tomcat (port 8080) and IIS (6). I've implemented the webutilities filter from Google (to minify resource files) and added it to the web.xml
file of my project (WEB-INF/web.xml).
When I access a resource-file (JS / CSS) on my website from a browser (through IIS), it shows that it was not minified. However, when I access it directly through Tomcat (port 8080) it shows up as minified.
This tells me that the filter I added in the web.xml
file in fact works, but for some reason IIS or ISAPI must be somehow blocking the minification. Is this possible?
Any advice on how to fix this would be greatly appreciated. Thank you!