1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
<?xml version="1.0"?>
<document>
<properties>
<title>HttpClient Features</title>
<author email="commons-dev@jakarta.apache.org">Commons Documentation Team</author>
<author email="rwaldhoff@apache.org">Rodney Waldhoff</author>
<author email="jsdever@apache.org">Jeff Dever</author>
<revision>$Id: features.xml,v 1.4 2002/07/19 22:32:45 jsdever Exp $</revision>
</properties>
<body>
<section name="Features">
<p>
<em>HttpClient</em> provides...
</p>
<ul>
<li>
an extensible framework for implementing HTTP-based methods,
including built-in support for the GET, POST, PUT, DELETE, HEAD,
and OPTIONS methods.
</li>
<br/> 
<li>
unconditional suppport for the client side of the HTTP/1.0 protocol, as defined in
<a href="http://www.w3.org/Protocols/rfc1945/rfc1945.txt">RFC 1945
(<i>Hypertext Transfer Protocol - HTTP/1.0</i>)</a>.
</li>
<br/> 
<li>
unconditional suppport for the client side of the HTTP/1.1 protocol, as defined in
<a href="http://www.w3.org/Protocols/rfc2616/rfc2616.txt">RFC 2616
(<i>Hypertext Transfer Protocol - HTTP/1.1</i>)</a>.
</li>
<br/> 
<li>
support for HTTP Cookies, as defined in
<a href="http://www.w3.org/Protocols/rfc2109/rfc2109.txt">RFC 2109
(<i>HTTP State Management System</i>)</a>.
</li>
<br/> 
<li>
support for Basic authentication, as defined in
<a href="http://www.ietf.org/rfc/rfc2617.txt">RFC 2617
(<i>HTTP Authentication: Basic and Digest Access Authentication</i>)</a>.
</li>
<br/> 
<li>
support for HTTPS (HTTP over SSL).
</li>
<br/> 
<li>
support for HTTP proxies.
</li>
</ul>
</section>
</body>
</document>
|