From dc0c90ab462f3d521c878c09778755b44e275847 Mon Sep 17 00:00:00 2001 From: jvelilla Date: Thu, 24 Nov 2011 09:32:07 -0800 Subject: [PATCH] Updated HTTP Library Features (markdown) --- HTTP-client-library.md | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/HTTP-client-library.md b/HTTP-client-library.md index bcf61954..9d0bc436 100644 --- a/HTTP-client-library.md +++ b/HTTP-client-library.md @@ -1,14 +1,18 @@ # HTTP Library Features The following list of features are taken form the book RESTful Web Services -* HTTPS -> It must support HTTPS and SSL certificate validation. -* HTTP verbs G -* Custom data -* Custom headers -* Proxies -* Compression -* Caching -* Auth methods -* Cookies -* Redirects \ No newline at end of file +* **HTTPS**: _It must support HTTPS and SSL certificate validation_ + +* **HTTP methods**: _It must support at least the five main HTTP methods: GET, HEAD, POST, PUT, and DELETE. Optional methods + OPTIONS and TRACE, and WebDAV extensions like MOVE, ._ +* **Custom data** : _It must allow the programmer to customize the data sent as the entity-body of a +PUT or POST request._ +* **Custom headers** : _It must allow the programmer to customize a request’s HTTP headers_ +* **Response Codes** : _It must give the programmer access to the response code and headers of an HTTP +response; not just access to the entity-body._ +* **Proxies**: +* **Compression**: +* **Caching**: +* **Auth methods** : +* **Cookies** : +* **Redirects**: \ No newline at end of file