Can't for the life of me figure this out. I deploy an application to glassfish 3.1.2.
I put a test file in the application's folder at the same level as WEB-INF called test.html
Now when I access the file like this: http://myserver/application/test.html It is served out fine as I would expect.
The problem is when the request has parameters attached,i.e.: http://myserver/application/test.html?foo=bar Glassfish returns 404 because it's looking for a file called test.html?foo=bar
How do I get glassfish to ignore parameters and serve the file requested?