Slightly more precise terminology

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1043702 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2010-12-08 21:47:56 +00:00
parent 9475e26293
commit b152f2275b
2 changed files with 4 additions and 5 deletions

View File

@ -547,8 +547,8 @@ byte[] response = httpclient.execute(httpget, handler);
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.
However if the request is sent via a proxy without creating a tunnel
(direct proxy mode) then the URI will be absolute.</para>
However if the request is sent via a proxy in a non-tunneling mode then
the URI will be absolute.</para>
</formalpara>
</listitem>
<listitem>

View File

@ -187,9 +187,8 @@ httpclient.getConnectionManager().shutdown();
local HTTP context after the request has been executed.</para>
<para>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.
However if the request is sent via a proxy without creating a tunnel
(direct proxy mode) then the URI will be absolute.</para>
Per default HTTP/1.0 and HTTP/1.1 use relative request URIs. However if the request
is sent via a proxy in a non-tunneling mode then the URI will be absolute.</para>
<programlisting><![CDATA[
DefaultHttpClient httpclient = new DefaultHttpClient();