Return-Path: Delivered-To: apmail-hc-commits-archive@www.apache.org Received: (qmail 1370 invoked from network); 6 Jul 2009 18:58:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Jul 2009 18:58:50 -0000 Received: (qmail 59292 invoked by uid 500); 6 Jul 2009 18:59:00 -0000 Delivered-To: apmail-hc-commits-archive@hc.apache.org Received: (qmail 59262 invoked by uid 500); 6 Jul 2009 18:59:00 -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 59253 invoked by uid 99); 6 Jul 2009 18:59:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Jul 2009 18:59:00 +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; Mon, 06 Jul 2009 18:58:48 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 90DD023888D7; Mon, 6 Jul 2009 18:58:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r791562 - in /httpcomponents/httpclient/trunk: pom.xml src/docbkx/ src/docbkx/fundamentals.xml src/docbkx/index.xml src/docbkx/preface.xml src/docbkx/resources/ src/docbkx/resources/css/hc-tutorial.css src/docbkx/resources/xsl/fopdf.xsl Date: Mon, 06 Jul 2009 18:58:28 -0000 To: commits@hc.apache.org From: olegk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090706185828.90DD023888D7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olegk Date: Mon Jul 6 18:58:27 2009 New Revision: 791562 URL: http://svn.apache.org/viewvc?rev=791562&view=rev Log: Migrated the first chapter of the HttpClient tutorial from WIKI Added: httpcomponents/httpclient/trunk/src/docbkx/ httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml (with props) httpcomponents/httpclient/trunk/src/docbkx/index.xml (with props) httpcomponents/httpclient/trunk/src/docbkx/preface.xml (with props) httpcomponents/httpclient/trunk/src/docbkx/resources/ (props changed) - copied from r791559, httpcomponents/httpcore/trunk/src/docbkx/resources/ Modified: httpcomponents/httpclient/trunk/pom.xml httpcomponents/httpclient/trunk/src/docbkx/resources/css/hc-tutorial.css httpcomponents/httpclient/trunk/src/docbkx/resources/xsl/fopdf.xsl Modified: httpcomponents/httpclient/trunk/pom.xml URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/pom.xml?rev=791562&r1=791561&r2=791562&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/pom.xml (original) +++ httpcomponents/httpclient/trunk/pom.xml Mon Jul 6 18:58:27 2009 @@ -1,9 +1,5 @@ + + Fundamentals +
+ Request execution + The most essential function of HttpClient is to execute HTTP methods. Execution of an + HTTP method involves one or several HTTP request / HTTP response exchanges, usually + handled internally by HttpClient. The user is expected to provide a request object to + execute and HttpClient is expected to transmit the request to the target server return a + corresponding response object, or throw an exception if execution was unsuccessful. + Quite naturally, the main entry point of the HttpClient API is the HttpClient + interface that defines the contract described above. + Here is an example of request execution process in its simplest form: + +
+ HTTP request + All HTTP requests have a request line consisting a method name, a request URI and + a HTTP protocol version. + HttpClient supports out of the box all HTTP methods defined in the HTTP/1.1 + specification: GET, HEAD, + POST, PUT, DELETE, + TRACE and OPTIONS. There is a special + class for each method type.: HttpGet, + HttpHead, HttpPost, + HttpPut, HttpDelete, + HttpTrace, and HttpOptions. + The Request-URI is a Uniform Resource Identifier that identifies the resource upon + which to apply the request. HTTP request URIs consist of a protocol scheme, host + name, optional port, resource path, optional query, and optional fragment. + + HttpClient provides a number of utility methods to simplify creation and + modification of request URIs. + URI can be assembled programmatically: + + stdout > + + Query string can also be generated from individual parameters: + qparams = new ArrayList(); +qparams.add(new BasicNameValuePair("q", "httpclient")); +qparams.add(new BasicNameValuePair("btnG", "Google Search")); +qparams.add(new BasicNameValuePair("aq", "f")); +qparams.add(new BasicNameValuePair("oq", null)); +URI uri = URIUtils.createURI("http", "www.google.com", -1, "/search", + URLEncodedUtils.format(qparams, "UTF-8"), null); +HttpGet httpget = new HttpGet(uri); +System.out.println(httpget.getURI()); +]]> + stdout > + +
+
+ HTTP response + HTTP response is a message sent by the server back to the client after having + received and interpreted a request message. The first line of that message consists + of the protocol version followed by a numeric status code and its associated textual + phrase. + + stdout > + +
+
+ Working with message headers + An HTTP message can contain a number of headers describing properties of the + message such as the content length, content type and so on. HttpClient provides + methods to retrieve, add, remove and enumerate headers. + + stdout > + + The most efficient way to obtain all headers of a given type is by using the + HeaderIterator interface. + + stdout > + + It also provides convenience methods to parse HTTP messages into individual header + elements. + + stdout > + +
+
+ HTTP entity + HTTP messages can carry a content entity associated with the request or response. + Entities can be found in some requests and in some responses, as they are optional. + Requests that use entities are referred to as entity enclosing requests. The HTTP + specification defines two entity enclosing methods: POST and + PUT. Responses are usually expected to enclose a content + entity. There are exceptions to this rule such as responses to + HEAD method and 204 No Content, + 304 Not Modified, 205 Reset Content + responses. + HttpClient distinguishes three kinds of entities, depending on where their content + originates: + + + + streamed: + The content is received from a stream, or generated on the fly. In + particular, this category includes entities being received from HTTP + responses. Streamed entities are generally not repeatable. + + + + + self-contained: + The content is in memory or obtained by means that are independent + from a connection or other entity. Self-contained entities are generally + repeatable. This type of entities will be mostly used for entity + enclosing HTTP requests. + + + + + wrapping: + The content is obtained from another entity. + + + + This distinction is important for connection management when streaming out content + from an HTTP response. For request entities that are created by an application and + only sent using HttpClient, the difference between streamed and self-contained is of + little importance. In that case, it is suggested to consider non-repeatable entities + as streamed, and those that are repeatable as self-contained. +
+ Repeatable entities + An entity can be repeatable, meaning its content can be read more than once. + This is only possible with self contained entities (like + ByteArrayEntity or + StringEntity) +
+
+ Using HTTP entities + Since an entity can represent both binary and character content, it has + support for character encodings (to support the latter, ie. character + content). + The entity is created when executing a request with enclosed content or when + the request was successful and the response body is used to send the result back + to the client. + To read the content from the entity, one can either retrieve the input stream + via the HttpEntity#getContent() method, which returns + an java.io.InputStream, or one can supply an output + stream to the HttpEntity#writeTo(OutputStream) method, + which will return once all content has been written to the given stream. + When the entity has been received with an incoming message, the methods + HttpEntity#getContentType() and + HttpEntity#getContentLength() methods can be used + for reading the common metadata such as Content-Type and + Content-Length headers (if they are available). Since the + Content-Type header can contain a character encoding for + text mime-types like text/plain or text/html, the + HttpEntity#getContentEncoding() method is used to + read this information. If the headers aren't available, a length of -1 will be + returned, and NULL for the content type. If the Content-Type + header is available, a Header object will be + returned. + When creating an entity for a outgoing message, this meta data has to be + supplied by the creator of the entity. + + stdout > + +
+
+
+ Ensuring release of low level resources + When finished with a response entity, it's important to ensure that all entity + content has been fully consumed, so that the connection could be safely returned to + the connection pool and re-used by the connection manager for subsequent requests. + The easiest way to do so is to call the + HttpEntity#consumeContent() method to consume any + available content on the stream. HttpClient will automatically release the + underlying connection back to the connection manager as soon as it detects that the + end of the content stream has been reached. The + HttpEntity#consumeContent() method is safe to call more + than once. + There can be situations, however, when only a small portion of the entire response + content needs to be retrieved and the performance penalty for consuming the + remaining content and making the connection reusable is too high, one can simply + terminate the request by calling HttpUriRequest#abort() + method. + + The connection will not be reused, but all level resources held by it will be + correctly deallocated. +
+
+ Consuming entity content + The recommended way to consume content of an entity is by using its + HttpEntity#getContent() or + HttpEntity#writeTo(OutputStream) methods. HttpClient + also comes with the EntityUtils class, which exposes several + static methods to more easily read the content or information from an entity. + Instead of reading the java.io.InputStream directly, one can + retrieve the whole content body in a string / byte array by using the methods from + this class. However, the use of HttpEntity is + strongly discouraged unless the response entities originate from a trusted HTTP + server and are known to be of limited length. + + In some situations it may be necessary to be able to read entity content more than + once. In this case entity content must be buffered in some way, either in memory or + on disk. The simplest way to accomplish that is by wrapping the original entity with + the BufferedHttpEntity class. This will cause the content of + the original entity to be read into a in-memory buffer. In all other ways the entity + wrapper will be have the original one. + +
+
+ Producing entity content + HttpClient provides several classes that can be used to efficiently stream out + content though HTTP connections. Instances of those classes can be associated with + entity enclosing requests such as POST and PUT + in order to enclose entity content into outgoing HTTP requests. HttpClient provides + several classes for most common data containers such as string, byte array, input + stream, and file: StringEntity, + ByteArrayEntity, + InputStreamEntity, and + FileEntity. + + Please note InputStreamEntity is not repeatable, because it + can only read from the underlying data stream once. Generally it is recommended to + implement a custom HttpEntity class which is + self-contained instead of using generic InputStreamEntity. + FileEntity can be a good starting point. +
+ Dynamic content entities + Often HTTP entities need to be generated dynamically based a particular + execution context. HttpClient provides support for dynamic entities by using + EntityTemplate entity class and + ContentProducer interface. Content producers + are objects which produce their content on demand, by writing it out to an + output stream. They are expected to be able produce their content every time + they are requested to do so. So entities created with + EntityTemplate are generally self-contained and + repeatable. + "); + writer.write(" "); + writer.write(" important stuff"); + writer.write(" "); + writer.write(""); + writer.flush(); + } +}; +HttpEntity entity = new EntityTemplate(cp); +HttpPost httppost = new HttpPost("http://localhost/handler.do"); +httppost.setEntity(entity); +]]> +
+
+ HTML forms + Many applications frequently need to simulate the process of submitting an + HTML form, for instance, in order to log in to a web application or submit input + data. HttpClient provides special entity class + UrlEncodedFormEntity to facilitate the + process. + formparams = new ArrayList(); +formparams.add(new BasicNameValuePair("param1", "value1")); +formparams.add(new BasicNameValuePair("param2", "value2")); +UrlEncodedFormEntity entity = new UrlEncodedFormEntity(formparams, "UTF-8"); +HttpPost httppost = new HttpPost("http://localhost/handler.do"); +httppost.setEntity(entity); +]]> + This UrlEncodedFormEntity instance will use the so + called URL encoding to encode parameters and produce the following + content: + +
+
+ Content chunking + Generally it is recommended to let HttpClient choose the most appropriate + transfer encoding based on the properties of the HTTP message being transferred. + It is possible, however, to inform HttpClient that the chunk coding is preferred + by setting HttpEntity#setChunked() to true. Please note + that HttpClient will use this flag as a hint only. This value well be ignored + when using HTTP protocol versions that do not support chunk coding, such as + HTTP/1.0. + +
+
+
+ Response handlers + The simplest and the most convenient way to handle responses is by using + ResponseHandler interface. This method completely + relieves the user from having to worry about connection management. When using a + ResponseHandler HttpClient will automatically + take care of ensuring release of the connection back to the connection manager + regardless whether the request execution succeeds or causes an exception. + handler = new ResponseHandler() { + public byte[] handleResponse( + HttpResponse response) throws ClientProtocolException, IOException { + HttpEntity entity = response.getEntity(); + if (entity != null) { + return EntityUtils.toByteArray(entity); + } else { + return null; + } + } +}; + +byte[] response = httpclient.execute(httpget, handler); +]]> +
+
+
+ HTTP execution context + Originally HTTP has been designed as a stateless, response-request oriented protocol. + However, real world applications often need to be able to persist state information + through several logically related request-response exchanges. In order to enable + applications to maintain a processing state HttpClient allows HTTP requests to be + executed within a particular execution context, referred to as HTTP context. Multiple + logically related requests can participate in a logical session if the same context is + reused between consecutive requests. HTTP context functions similarly to + java.util.Map<String, Object>. It is + simply a collection of arbitrary named values. Application can populate context + attributes prior to a request execution or examine the context after the execution has + been completed. + In the course of HTTP request execution HttpClient adds the following attributes to + the execution context: + + + + + <literal>http.connection</literal> + + HttpConnection instance representing the + actual connection to the target server. + + + + + + <literal>http.target_host</literal> + + HttpHost instance representing the connection + target. + + + + + + <literal>http.proxy_host</literal> + + HttpHost instance representing the connection + proxy, if used + + + + + + <literal>http.request</literal> + + HttpRequest instance representing the + actual HTTP request. + + + + + + <literal>http.response</literal> + + HttpResponse instance representing the + actual HTTP response. + + + + + + <literal>http.request_sent</literal> + + java.lang.Boolean object representing the flag + indicating whether the actual request has been fully transmitted to the + connection target. + + + + For instance, in order to determine the final redirect target, one can examine the + value of the http.target_host attribute after the request + execution: + + stdout > + +
+
+ Exception handling + HttpClient can throw two types of exceptions: + java.io.IOException in case of an I/O failure such as + socket timeout or an socket reset and HttpException that + signals an HTTP failure such as a violation of the HTTP protocol. Usually I/O errors are + considered non-fatal and recoverable, whereas HTTP protocol errors are considered fatal + and cannot be automatically recovered from. +
+ HTTP transport safety + It is important to understand that the HTTP protocol is not well suited for all + types of applications. HTTP is a simple request/response oriented protocol which was + initially designed to support static or dynamically generated content retrieval. It + has never been intended to support transactional operations. For instance, the HTTP + server will consider its part of the contract fulfilled if it succeeds in receiving + and processing the request, generating a response and sending a status code back to + the client. The server will make no attempts to roll back the transaction if the + client fails to receive the response in its entirety due to a read timeout, a + request cancellation or a system crash. If the client decides to retry the same + request, the server will inevitably end up executing the same transaction more than + once. In some cases this may lead to application data corruption or inconsistent + application state. + Even though HTTP has never been designed to support transactional processing, it + can still be used as a transport protocol for mission critical applications provided + certain conditions are met. To ensure HTTP transport layer safety the system must + ensure the idempotency of HTTP methods on the application layer. +
+
+ Idempotent methods + HTTP/1.1 specification defines idempotent method as + + Methods can also have the property of "idempotence" in + that (aside from error or expiration issues) the side-effects of N > 0 + identical requests is the same as for a single request + + In other words the application ought to ensure that it is prepared to deal with + the implications of multiple execution of the same method. This can be achieved, for + instance, by providing a unique transaction id and by other means of avoiding + execution of the same logical operation. + Please note that this problem is not specific to HttpClient. Browser based + applications are subject to exactly the same issues related to HTTP methods + non-idempotency. + HttpClient assumes non-entity enclosing methods such as GET and + HEAD to be idempotent and entity enclosing methods such as + POST and PUT to be not. +
+
+ Automatic exception recovery + By default HttpClient attempts to automatically recover from I/O exceptions. The + default auto-recovery mechanism is limited to just a few exceptions that are known + to be safe. + + + HttpClient will make no attempt to recover from any logical or HTTP + protocol errors (those derived from + HttpException class). + + + HttpClient will automatically retry those methods that are assumed to be + idempotent. + + + HttpClient will automatically retry those methods that fail with a + transport exception while the HTTP request is still being transmitted to the + target server (i.e. the request has not been fully transmitted to the + server). + + + HttpClient will automatically retry those methods that have been fully + transmitted to the server, but the server failed to respond with an HTTP + status code (the server simply drops the connection without sending anything + back). In this case it is assumed that the request has not been processed by + the server and the application state has not changed. If this assumption may + not hold true for the web server your application is targeting it is highly + recommended to provide a custom exception handler. + + +
+
+ Request retry handler + In order to enable a custom exception recovery mechanism one should provide an + implementation of the HttpRequestRetryHandler + interface. + = 5) { + // Do not retry if over max retry count + return false; + } + if (exception instanceof NoHttpResponseException) { + // Retry if the server dropped connection on us + return true; + } + if (exception instanceof SSLHandshakeException) { + // Do not retry on SSL handshake exception + return false; + } + HttpRequest request = (HttpRequest) context.getAttribute( + ExecutionContext.HTTP_REQUEST); + boolean idempotent = !(request instanceof HttpEntityEnclosingRequest); + if (idempotent) { + // Retry if the request is considered idempotent + return true; + } + return false; + } + +}; + +httpclient.setHttpRequestRetryHandler(myRetryHandler); +]]> +
+
+
+ Aborting requests + In some situations HTTP request execution fail to complete within the expected time + frame due to high load on the target server or too many concurrent requests issued on + the client side. In such cases it may be necessary to terminate the request prematurely + and unblock the execution thread blocked in a I/O operation. HTTP requests being + executed by HttpClient can be aborted at any stage of execution by invoking + HttpUriRequest#abort() method. This method is thread-safe + and can be called from any thread. When an HTTP request is aborted its execution thread + blocked in an I/O operation is guaranteed to unblock by throwing a + InterruptedIOException +
+
+ HTTP protocol interceptors + HTTP protocol interceptor is a routine that implements a specific aspect of the HTTP + protocol. Usually protocol interceptors are expected to act upon one specific header or + a group of related headers of the incoming message or populate the outgoing message with + one specific header or a group of related headers. Protocol interceptors can also + manipulate content entities enclosed with messages, transparent content compression / + decompression being a good example. Usually this is accomplished by using the + 'Decorator' pattern where a wrapper entity class is used to decorate the original + entity. Several protocol interceptors can be combined to form one logical unit. + Protocol interceptors can collaborate by sharing information - such as a processing + state - through the HTTP execution context. Protocol interceptors can use HTTP context + to store a processing state for one request or several consecutive requests. + Usually the order in which interceptors are executed should not matter as long as they + do not depend on a particular state of the execution context. If protocol interceptors + have interdependencies and therefore must be executed in a particular order, they should + be added to the protocol processor in the same sequence as their expected execution + order. + Protocol interceptors must be implemented as thread-safe. Similarly to servlets, + protocol interceptors should not use instance variables unless access to those variables + is synchronized. + This is an example of how local context can be used to persist a processing state + between consecutive requests: + +
+
+ HTTP parameters + HttpParams interface represents a collection of immutable values that define a runtime + behavior of a component. In many ways HttpParams is + similar to HttpContext. The main distinction between the + two lies in their use at runtime. Both interfaces represent a collection of objects that + are organized as a map of keys to object values, but serve distinct purposes: + + + HttpParams is intended to contain simple + objects: integers, doubles, strings, collections and objects that remain + immutable at runtime. + + + + HttpParams is expected to be used in the 'write + once - ready many' mode. HttpContext is intended + to contain complex objects that are very likely to mutate in the course of HTTP + message processing. + + + The purpose of HttpParams is to define a + behavior of other components. Usually each complex component has its own + HttpParams object. The purpose of + HttpContext is to represent an execution + state of an HTTP process. Usually the same execution context is shared among + many collaborating objects. + + +
+ Parameter hierarchies + In the course of HTTP request execution HttpParams + of the HttpRequest object are linked together with + HttpParams of the + HttpClient instance used to execute the request. + This enables parameters set at the HTTP request level take precedence over + HttpParams set at the HTTP client level. The + recommended practice is to set common parameters shared by all HTTP requests at the + HTTP client level and selectively override specific parameters at the HTTP request + level. + + stdout > + +
+
+ HTTP parameters beans + HttpParams interface allows for a great deal of + flexibility in handling configuration of components. Most importantly, new + parameters can be introduced without affecting binary compatibility with older + versions. However, HttpParams also has a certain + disadvantage compared to regular Java beans: + HttpParams cannot be assembled using a DI + framework. To mitigate the limitation, HttpClient includes a number of bean classes + that can used in order to initialize HttpParams + objects using standard Java bean conventions. + + stdout > + +
+
+
+ HTTP request execution parameters + These are parameters that can impact the process of request execution: + + + + + <literal>http.protocol.version</literal> + + defines HTTP protocol version used if not set explicitly on the request + object. This parameter expects a value of type + ProtocolVersion. If this parameter is not + set HTTP/1.1 will be used. + + + + + + <literal>http.protocol.element-charset</literal> + + defines the charset to be used for encoding HTTP protocol elements. This + parameter expects a value of type java.lang.String. + If this parameter is not set US-ASCII will be + used. + + + + + + <literal>http.protocol.content-charset</literal> + + defines the charset to be used per default for content body coding. This + parameter expects a value of type java.lang.String. + If this parameter is not set ISO-8859-1 will be + used. + + + + + + <literal>http.useragent</literal> + + defines the content of the User-Agent header. This + parameter expects a value of type java.lang.String. + If this parameter is not set, HttpClient will automatically generate a value + for it. + + + + + + <literal>http.protocol.strict-transfer-encoding</literal> + + defines whether responses with an invalid + Transfer-Encoding header should be rejected. This + parameter expects a value of type java.lang.Boolean. + If this parameter is not set invalid Transfer-Encoding + values will be ignored. + + + + + + <literal>http.protocol.expect-continue</literal> + + activates Expect: 100-Continue handshake for the entity + enclosing methods. The purpose of the Expect: + 100-Continue handshake is to allow the client that is sending + a request message with a request body to determine if the origin server is + willing to accept the request (based on the request headers) before the + client sends the request body. The use of the Expect: + 100-continue handshake can result in a noticeable performance + improvement for entity enclosing requests (such as POST + and PUT) that require the target server's authentication. + Expect: 100-continue handshake should be used with + caution, as it may cause problems with HTTP servers and proxies that do not + support HTTP/1.1 protocol. This parameter expects a value of type + java.lang.Boolean. If this parameter is not set + HttpClient will attempt to use the handshake. + + + + + + <literal>http.protocol.wait-for-continue</literal> + + defines the maximum period of time in milliseconds the client should spend + waiting for a 100-continue response. This parameter + expects a value of type java.lang.Integer. If this + parameter is not set HttpClient will wait 3 seconds for a confirmation + before resuming the transmission of the request body. + + + +
+
Propchange: httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpcomponents/httpclient/trunk/src/docbkx/fundamentals.xml ------------------------------------------------------------------------------ svn:executable = * Added: httpcomponents/httpclient/trunk/src/docbkx/index.xml URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/index.xml?rev=791562&view=auto ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/index.xml (added) +++ httpcomponents/httpclient/trunk/src/docbkx/index.xml Mon Jul 6 18:58:27 2009 @@ -0,0 +1,66 @@ + + + + + + + HttpClient Tutorial + &version; + + + + Oleg + Kalnichevski + + + + + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + + + + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + + + + + + + + + + Propchange: httpcomponents/httpclient/trunk/src/docbkx/index.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpcomponents/httpclient/trunk/src/docbkx/index.xml ------------------------------------------------------------------------------ svn:executable = * Added: httpcomponents/httpclient/trunk/src/docbkx/preface.xml URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/preface.xml?rev=791562&view=auto ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/preface.xml (added) +++ httpcomponents/httpclient/trunk/src/docbkx/preface.xml Mon Jul 6 18:58:27 2009 @@ -0,0 +1,81 @@ + + + + + Preface + + The Hyper-Text Transfer Protocol (HTTP) is perhaps the most significant protocol used on the + Internet today. Web services, network-enabled appliances and the growth of network computing + continue to expand the role of the HTTP protocol beyond user-driven web browsers, while + increasing the number of applications that require HTTP support. + + + Although the java.net package provides basic functionality for accessing resources via HTTP, + it doesn't provide the full flexibility or functionality needed by many applications. + HttpClient seeks to fill this void by providing an efficient, up-to-date, and feature-rich + package implementing the client side of the most recent HTTP standards and recommendations. + + + Designed for extension while providing robust support for the base HTTP protocol, HttpClient + may be of interest to anyone building HTTP-aware client applications such as web browsers, web + service clients, or systems that leverage or extend the HTTP protocol for distributed + communication. + +
+ HttpClient scope + + + + Client-side HTTP transport library based on HttpCore + + + + + Based on classic (blocking) I/O + + + + + Content agnostic + + + +
+
+ What HttpClient is NOT + + + + HttpClient is NOT a browser. It is a client side HTTP transport library. + HttpClient's purpose is to transmit and receive HTTP messages. HttpClient will not + attempt to cache content, execute javascript embedded in HTML pages, try to guess + content type, or reformat request / redirect location URIs, or other functionality + unrelated to the HTTP transport. + + + +
+ +
\ No newline at end of file Propchange: httpcomponents/httpclient/trunk/src/docbkx/preface.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: httpcomponents/httpclient/trunk/src/docbkx/preface.xml ------------------------------------------------------------------------------ svn:executable = * Propchange: httpcomponents/httpclient/trunk/src/docbkx/resources/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Mon Jul 6 18:58:27 2009 @@ -0,0 +1 @@ +/httpcomponents/httpcore/branches/ibm_compat_branch/src/docbkx/resources:755687-758898 Modified: httpcomponents/httpclient/trunk/src/docbkx/resources/css/hc-tutorial.css URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/resources/css/hc-tutorial.css?rev=791562&r1=791559&r2=791562&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/resources/css/hc-tutorial.css (original) +++ httpcomponents/httpclient/trunk/src/docbkx/resources/css/hc-tutorial.css Mon Jul 6 18:58:27 2009 @@ -1,8 +1,4 @@ /* - $HeadURL:$ - $Revision:$ - $Date:$ - ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file Modified: httpcomponents/httpclient/trunk/src/docbkx/resources/xsl/fopdf.xsl URL: http://svn.apache.org/viewvc/httpcomponents/httpclient/trunk/src/docbkx/resources/xsl/fopdf.xsl?rev=791562&r1=791559&r2=791562&view=diff ============================================================================== --- httpcomponents/httpclient/trunk/src/docbkx/resources/xsl/fopdf.xsl (original) +++ httpcomponents/httpclient/trunk/src/docbkx/resources/xsl/fopdf.xsl Mon Jul 6 18:58:27 2009 @@ -71,7 +71,7 @@ - HttpCore ( + HttpClient ( )