Contact the core Jetty developers at
www.webtide.com
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
private support for your internal/customer projects ... custom extensions and distributions ... versioned snapshots for indefinite support ... scalability guidance for your apps and Ajax/Comet projects ... development services from 1 day to full product delivery
DOCUMENTATION: Jetty 6 - this wiki. Jetty 7 - at Eclipse. Jetty8 - at Eclipse. Jetty 9 - at Eclipse.
Skip to end of metadata
Go to start of metadata
Jetty HTTP Client
The HttpClient is an implementation of the client API. It makes it easy to conduct exchanges with a server, and to process the responses. It can be either be blocking or non-blocking, depending on the connector type; default is to use non-blocking. The HttpClient can also do SSL and use proxies.
To send a request, use the send(HttpExchange exchange) method. The exchange contains both the headers and content (source) of the request plus the callbacks to handle responses. A HttpClient can have many exchanges outstanding.
Asynchronous Client Example
Labels