Re: Tomcat 4 Compression Filter

2004-02-26 Thread Niall Pemberton
Thanks Navjot. Thats another option I hadn't thought of. Niall - Original Message - From: Navjot Singh [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, February 26, 2004 5:10 AM Subject: RE: Tomcat 4 Compression Filter put apache in front of tomcat

RE: Tomcat 4 Compression Filter

2004-02-25 Thread Jerry Jalenak
I've also been playing around with this with mixed results. I've been looking for some doc on the filter mainly to better understand the 'compressThreshold' setting. Does anyone have any doc for this thing? Jerry Jalenak Development Manager, Web Publishing LabOne, Inc. 10101 Renner Blvd.

RE: Tomcat 4 Compression Filter

2004-02-25 Thread Kris Schneider
Essentially, the compressionThreshold filter init param is a buffer size for CompressionResponseStream. If it's 0, then compression is turned off (this is handled by the filter, not the stream). Otherwise, it's the max of 128 (hard-coded min) and whatever is set in web.xml. The stream works by

RE: Tomcat 4 Compression Filter

2004-02-25 Thread Jerry Jalenak
: Kris Schneider [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:42 AM To: Struts Users Mailing List Subject: RE: Tomcat 4 Compression Filter Essentially, the compressionThreshold filter init param is a buffer size for CompressionResponseStream. If it's 0, then compression

Re: Tomcat 4 Compression Filter

2004-02-25 Thread Niall Pemberton
3:41 PM Subject: RE: Tomcat 4 Compression Filter Essentially, the compressionThreshold filter init param is a buffer size for CompressionResponseStream. If it's 0, then compression is turned off (this is handled by the filter, not the stream). Otherwise, it's the max of 128 (hard-coded min

Re: Tomcat 4 Compression Filter

2004-02-25 Thread Niall Pemberton
If you set it less than 10, it will get re-set to 128 (unless its zero) - Original Message - From: Jerry Jalenak [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 3:57 PM Subject: RE: Tomcat 4 Compression Filter Kris - Thanks. So

RE: Tomcat 4 Compression Filter

2004-02-25 Thread rick
Can you enable mod_gzip and/or mod_deflate for Apache? I've always felt that's a better deliniation of responsibilities between the servers. Rick DeBay On Wed, 25 Feb 2004 08:58 , Jerry Jalenak [EMAIL PROTECTED] sent: I've also been playing around with this with mixed results. I've been

RE: Tomcat 4 Compression Filter

2004-02-25 Thread rick
Message- From: Kris Schneider [EMAIL PROTECTED]','','','')[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:42 AM To: Struts Users Mailing List Subject: RE: Tomcat 4 Compression Filter Essentially, the compressionThreshold filter init param is a buffer size

Re: Tomcat 4 Compression Filter

2004-02-25 Thread Kris Schneider
: Jerry Jalenak [EMAIL PROTECTED] To: 'Struts Users Mailing List' [EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 3:57 PM Subject: RE: Tomcat 4 Compression Filter Kris - Thanks. So what's a reasonable setting? The example has the threshold set to 10; is this OK for most web apps

Re: Tomcat 4 Compression Filter

2004-02-25 Thread Christian Bollmeyer
On Wednesday 25 February 2004 15:58, Jerry Jalenak wrote: I've also been playing around with this with mixed results. I've been looking for some doc on the filter mainly to better understand the 'compressThreshold' setting. Does anyone have any doc for this thing? IIRC the 4.x filter used

RE: Tomcat 4 Compression Filter

2004-02-25 Thread Navjot Singh
put apache in front of tomcat and install mod_gzip with apache. it will do almost everything you can wish for? -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 5:43 PM To: Struts User Jakarta Subject: Tomcat 4 Compression Filter There