Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Httpcomponents Wiki" 
for change notification.

The following page has been changed by OlegKalnichevski:
http://wiki.apache.org/HttpComponents/HttpCoreTutorial

------------------------------------------------------------------------------
  
  !HttpService is a server side HTTP protocol handler based in the blocking I/O 
model that implements the essential requirements of the HTTP protocol for the 
server side message processing as described by RFC 2616. 
  
- !HttpService relies on !HttpProcessor to generate mandatory protocol headers 
for all outgoing messages and apply common, cross-cutting message 
transformations to all incoming and outgoing messages, whereas HTTP request 
executor is expected to take care of application specific content generation 
and processing.
+ !HttpService relies on !HttpProcessor to generate mandatory protocol headers 
for all outgoing messages and apply common, cross-cutting message 
transformations to all incoming and outgoing messages, whereas HTTP request 
handlers are expected to take care of application specific content generation 
and processing.
  
  {{{
  HttpParams params;
@@ -716, +716 @@

  
  === HTTP request executor ===
  
- !HttpRequestExecutor is a client side HTTP protocol handler based on the 
blocking I/O model that implements the essential requirements of the HTTP 
protocol for the client side message processing, as described by RFC 2616. 
!HttpRequestExecutor, similarly to its server side counterpart, makes use of 
!HttpProcessor to take care of the cross-cutting protocol aspects that apply to 
all incoming and outgoing messages. Application specific processing can be 
implemented outside !HttpRequestExecutor once the request has been executed and 
a response has been received.
+ !HttpRequestExecutor is a client side HTTP protocol handler based on the 
blocking I/O model that implements the essential requirements of the HTTP 
protocol for the client side message processing, as described by RFC 2616. 
!HttpRequestExecutor relies on !HttpProcessor to generate mandatory protocol 
headers for all outgoing messages and apply common, cross-cutting message 
transformations to all incoming and outgoing messages. Application specific 
processing can be implemented outside !HttpRequestExecutor once the request has 
been executed and a response has been received.
  
  {{{
  HttpClientConnection conn;

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to