Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty/Feature/HttpClient"

< Jetty‎ | Feature
Line 12: Line 12:
 
* Highly configurable in terms of timeouts, connections and thread pooling.
 
* Highly configurable in terms of timeouts, connections and thread pooling.
  
You may want to check the [[Tutorial/HttpClient]] for further information and examples.
+
You may want to check the [[Jetty/Tutorial/HttpClient|HttpClient Tutorial]] for further information and examples.
 
}}
 
}}

Revision as of 04:48, 15 September 2009



Introduction

The Jetty HttpClient is the Jetty component that allows to make requests to HTTP servers and to interpret responses from HTTP servers.

Feature

The Jetty HttpClient has the following features:

  • Asynchronous by nature, with possibility to use it synchronously.
  • Choice of using non-blocking connectors (the default) or blocking connectors.
  • Support for SSL.
  • Support for HTTP proxy.
  • Support for HTTP authentication mechanisms.
  • Highly configurable in terms of timeouts, connections and thread pooling.

You may want to check the HttpClient Tutorial for further information and examples.

Back to the top