Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 61254 invoked from network); 8 Dec 2010 16:54:11 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 8 Dec 2010 16:54:11 -0000 Received: (qmail 59520 invoked by uid 500); 8 Dec 2010 16:54:11 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 59477 invoked by uid 500); 8 Dec 2010 16:54:11 -0000 Mailing-List: contact commits-help@hc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "HttpComponents Project" Delivered-To: mailing list commits@hc.apache.org Received: (qmail 59469 invoked by uid 99); 8 Dec 2010 16:54:11 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Dec 2010 16:54:11 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 08 Dec 2010 16:54:08 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1920E2388A41; Wed, 8 Dec 2010 16:53:47 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1043518 - in /httpcomponents/httpclient/trunk/src/docbkx: fundamentals.xml httpagent.xml Date: Wed, 08 Dec 2010 16:53:47 -0000 To: commits@hc.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101208165347.1920E2388A41@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Wed Dec 8 16:53:46 2010 New Revision: 1043518 URL: http://svn.apache.org/viewvc?rev=1043518&view=rev Log: Clarify URI content in Execution Context Modified: httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml Modified: httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml?rev=1043518&r1=1043517&r2=1043518&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml (original) +++ httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml Wed Dec 8 16:53:46 2010 @@ -543,7 +543,11 @@ byte[] response = httpclient.execute(htt <constant>ExecutionContext.HTTP_REQUEST</constant>='http.request': HttpRequest instance representing the - actual HTTP request. + actual HTTP request. + The final HttpRequest object in the execution context always represents + the state of the message _exactly_ as it was sent to the target server. + Per default HTTP/1.0 and HTTP/1.1 use relative request URIs. + Modified: httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml?rev=1043518&r1=1043517&r2=1043518&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml (original) +++ httpcomponents/httpclient/trunk/src/docbkx/httpagent.xml Wed Dec 8 16:53:46 2010 @@ -185,6 +185,9 @@ httpclient.getConnectionManager().shutdo updated depending on the execution context. Therefore the final request properties such as the target host and request URI can be determined by examining the content of the local HTTP context after the request has been executed. + The final HttpRequest object in the execution context always represents + the state of the message _exactly_ as it was sent to the target server. + Per default HTTP/1.0 and HTTP/1.1 use relative request URIs.