Re: GZIP-encoding/mod_gzip and Tomcat??

2003-12-01 Thread Mike Baroukh
No need for it in the connector if you're using apache! :) You can get a mod_gzip module and do it from Apache which would probably be faster. Are you sure ? Has somebody already used mod_gzip with Apache Tomcat ? I use it with Resin, but it was not possible with tomcat because mod_jk

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-12-01 Thread Tim Funk
mod_gzip works with jk Just make sure that you have the following: mod_gzip_dechunk Yes -Tim Mike Baroukh wrote: No need for it in the connector if you're using apache! :) You can get a mod_gzip module and do it from Apache which would probably be faster. Are you sure ? Has

RE: GZIP-encoding/mod_gzip and Tomcat??

2003-12-01 Thread Subir Sengupta
If you're using Apache 2.x then you need mod_deflate http://httpd.apache.org/docs-2.0/mod/mod_deflate.html Subir -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 8:12 AM To: Tomcat Users List Subject: Re: GZIP-encoding/mod_gzip and Tomcat

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Antonio Fiol Bonnín
Ron Andersen wrote: Is GZIP-encoding/mod_gzip avaliable in Tomcats web server? Hello, You can write a ServletFilter, and a HttpServletResponse wrapper to achieve the same results. Look into java.util.zip.* -- I never said it was easy ;-) Antonio Fiol

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Jacob Kjome
The Coyote connector supports this already. No need to write a servlet filter. Look in server.xml or the tomcat docs for details. Jake At 03:16 PM 11/30/2003 +0100, you wrote: Ron Andersen wrote: Is GZIP-encoding/mod_gzip avaliable in Tomcats web server? Hello, You can write a

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Ron Andersen
Thanks! I was reading the Wrox's Professional Tomcat book and it states that Tomcat's web servers does not support Virtual Hosts. Does it now support Virtual Hosts? Jacob Kjome [EMAIL PROTECTED] wrote: The Coyote connector supports this already. No need to write a servlet filter. Look in

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Remy Maucherat
Ron Andersen wrote: Thanks! I was reading the Wrox's Professional Tomcat book and it states that Tomcat's web servers does not support Virtual Hosts. Does it now support Virtual Hosts? The book is wrong: even Tomcat 4.0 supported vhosts. -- x Rémy Maucherat Senior

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Jacob Kjome
You should verify information with the official Tomcat docs before posting questions here. http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/host.html If you don't find the answers in Tomcat's own docs, then don't hesitate to ask further questions. Jake At 07:39 AM 11/30/2003 -0800, you

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Ron Andersen
ok..but by the way..it would be extremely helpful if Tomcat's web site would have search functinality.. Jacob Kjome [EMAIL PROTECTED] wrote: You should verify information with the official Tomcat docs before posting questions here.

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread QM
: Date: Sun, 30 Nov 2003 09:24:41 -0800 (PST) : From: Ron Andersen [EMAIL PROTECTED] : : ok..but by the way..it would be extremely helpful if Tomcat's web site would have search functinality.. Google has a handy feature for this -- add site:host to your search terms. For example:

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-30 Thread Trenton D. Adams
No need for it in the connector if you're using apache! :) You can get a mod_gzip module and do it from Apache which would probably be faster. Jacob Kjome wrote: The Coyote connector supports this already. No need to write a servlet filter. Look in server.xml or the tomcat docs for details.

Re: GZIP-encoding/mod_gzip and Tomcat??

2003-11-28 Thread Tim Funk
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/config/coyote.html or http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/coyote.html See property compression. -Tim Ron Andersen wrote: Is GZIP-encoding/mod_gzip avaliable in Tomcats web server?