Madhav Bhargava schrieb: > Hi Cagatay, > > > > I tried using the GZipFilter that comes along with ehcache as well. I > configured the filter in web.xml and the mapping URL was just “*.jsf”. > It used to give the same problem. Somehow the gzipped content is getting > written to the IDE console instead of sending that to the browser.
It's probably just a filter order problem. A servlet engine nests filters in the order they are declared in the web.xml file. So make sure your gzip filter is the first filter declared in your web.xml file...that will make compression be the last thing done before the data is sent out. Regards, Simon

