Tomcat GzipOutputFilter

2011-04-01 Thread John Baker
Hello, I note there's a GzipOutputFilter in the Tomcat (and JBoss) jar files: http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/coyote/http11/filters/GzipOutputFilter.html Yet I can't load it in the web.xml file using filter-class. Is there some pre-defined filter name for this filter?

Re: Tomcat GzipOutputFilter

2011-04-01 Thread Konstantin Kolinko
2011/4/1 John Baker jba...@javasystemsolutions.com: Hello, I note there's a GzipOutputFilter in the Tomcat (and JBoss) jar files: http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/coyote/http11/filters/GzipOutputFilter.html Yet I can't load it in the web.xml file using filter-class. Is

Re: Tomcat GzipOutputFilter

2011-04-01 Thread John Baker
The AJP connector doesn't support compression (a missing useful feature in my opinion) so I found myself looking for a filter. Thanks for letting me know it won't work. I'll look at the example filter. On Fri, 01 Apr 2011 16:28 +0400, Konstantin Kolinko knst.koli...@gmail.com wrote: 2011/4/1

Re: Tomcat GzipOutputFilter

2011-04-01 Thread Mikolaj Rydzewski
On Fri, 01 Apr 2011 13:31:18 +0100, John Baker jba...@javasystemsolutions.com wrote: The AJP connector doesn't support compression (a missing useful feature in my opinion) Typical deployment setup for AJP connector is to pass requests via processes on the same machine, or at least in the

Re: Tomcat GzipOutputFilter

2011-04-01 Thread Pid
On 01/04/2011 13:31, John Baker wrote: The AJP connector doesn't support compression (a missing useful feature in my opinion) so I found myself looking for a filter. Thanks for letting me know it won't work. I'll look at the example filter. Surely you want to be doing that at the HTTPD edge?