Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 42531 invoked from network); 25 Nov 2010 13:04:00 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 Nov 2010 13:04:00 -0000 Received: (qmail 21260 invoked by uid 500); 25 Nov 2010 13:03:55 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 21152 invoked by uid 500); 25 Nov 2010 13:03:54 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 21138 invoked by uid 99); 25 Nov 2010 13:03:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Nov 2010 13:03:54 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of i.galic@brainsware.org designates 188.40.115.121 as permitted sender) Received: from [188.40.115.121] (HELO mail.brainsware.org) (188.40.115.121) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Nov 2010 13:03:48 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by mail.brainsware.org (Postfix) with ESMTP id CF5B61DE336 for ; Thu, 25 Nov 2010 13:03:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at brainsware.org Received: from mail.brainsware.org ([127.0.0.1]) by localhost (mail.brainsware.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GlwuY3GN8q01 for ; Thu, 25 Nov 2010 13:03:24 +0000 (UTC) Received: from mail.brainsware.org (mail.brainsware.org [188.40.115.121]) by mail.brainsware.org (Postfix) with ESMTP id E9B961DE328 for ; Thu, 25 Nov 2010 13:03:24 +0000 (UTC) Date: Thu, 25 Nov 2010 13:03:24 +0000 (UTC) From: =?utf-8?Q?Igor_Gali=C4=87?= To: users@httpd.apache.org Message-ID: <1204459610.1237.1290690204725.JavaMail.root@iris> In-Reply-To: <271488780.1235.1290690097054.JavaMail.root@iris> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Originating-IP: [195.72.132.1] X-Mailer: Zimbra 6.0.5_GA_2213.DEBIAN5_64 (ZimbraWebClient - FF3.0 ([unknown])/6.0.5_GA_2213.DEBIAN5_64) Subject: Re: [users@httpd] Content Length Vs Chunked Encoding ----- "Madan Udaykumar" wrote: > Hi, >=20 > I am using Apache 2.2.8 server installed on Ubuntu. I want to enable > the server to send me chunked encoded data when I request data from > the server. I looked at all FAQ, google etc and could not find exact > answer to enable this. >=20 > Appreciate if you can let me know how exactly to do this. The point of chunked encoding is that it's sent out only when a number of conditions are met: * The client supports chunked encoding - This is implied by a client advertising itself as HTTP/1.1 - or by clients who explicitly send out the TE request header (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.39) * The server cannot determine the content length. - For a User-Agent using a protocol prior to HTTP/1.0, the content simply will be sent out without a Content-Length header. This means that it's very easy to provoke a chunked transfer-encoding from a module producing dynamic content. > Thanks > -Madan i --=20 Igor Gali=C4=87 Tel: +43 (0) 664 886 22 883 Mail: i.galic@brainsware.org URL: http://brainsware.org/ --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org