Updated HTTP Library Features (markdown)

This commit is contained in:
jvelilla
2011-11-24 09:32:07 -08:00
parent fdef9b0c8f
commit dc0c90ab46

View File

@@ -1,14 +1,18 @@
# HTTP Library Features # HTTP Library Features
The following list of features are taken form the book RESTful Web Services The following list of features are taken form the book RESTful Web Services
* HTTPS * **HTTPS**: _It must support HTTPS and SSL certificate validation_
> It must support HTTPS and SSL certificate validation.
* HTTP verbs G * **HTTP methods**: _It must support at least the five main HTTP methods: GET, HEAD, POST, PUT, and DELETE. Optional methods
* Custom data OPTIONS and TRACE, and WebDAV extensions like MOVE, ._
* Custom headers * **Custom data** : _It must allow the programmer to customize the data sent as the entity-body of a
* Proxies PUT or POST request._
* Compression * **Custom headers** : _It must allow the programmer to customize a requests HTTP headers_
* Caching * **Response Codes** : _It must give the programmer access to the response code and headers of an HTTP
* Auth methods response; not just access to the entity-body._
* Cookies * **Proxies**:
* Redirects * **Compression**:
* **Caching**:
* **Auth methods** :
* **Cookies** :
* **Redirects**: