Uses of Class
org.apache.http.client.ClientProtocolException

Packages that use ClientProtocolException
org.apache.http.client The API for client-side HTTP communication. 
org.apache.http.impl.client Default implementations for interfaces in org.apache.http.client
 

Uses of ClientProtocolException in org.apache.http.client
 

Subclasses of ClientProtocolException in org.apache.http.client
 class HttpResponseException
          Signals a non 2xx HTTP response.
 

Methods in org.apache.http.client that throw ClientProtocolException
 org.apache.http.HttpResponse HttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request)
          Executes a request to the target using the default context.
 org.apache.http.HttpResponse HttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, org.apache.http.protocol.HttpContext context)
          Executes a request to the target using the given context.
<T> T
HttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler)
          Executes a request to the target using the default context and processes the response using the given response handler.
<T> T
HttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
          Executes a request to the target using the given context and processes the response using the given response handler.
 org.apache.http.HttpResponse HttpClient.execute(HttpUriRequest request)
          Executes a request using the default context.
 org.apache.http.HttpResponse HttpClient.execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
          Executes a request using the given context.
<T> T
HttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
          Executes a request using the default context and processes the response using the given response handler.
<T> T
HttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
          Executes a request using the given context and processes the response using the given response handler.
 T ResponseHandler.handleResponse(org.apache.http.HttpResponse response)
          Processes an HttpResponse and returns some value corresponding to that response.
 

Uses of ClientProtocolException in org.apache.http.impl.client
 

Methods in org.apache.http.impl.client that throw ClientProtocolException
 org.apache.http.HttpResponse AbstractHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request)
           
 org.apache.http.HttpResponse AbstractHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, org.apache.http.protocol.HttpContext context)
           
<T> T
AbstractHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler)
           
<T> T
AbstractHttpClient.execute(org.apache.http.HttpHost target, org.apache.http.HttpRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
           
 org.apache.http.HttpResponse AbstractHttpClient.execute(HttpUriRequest request)
           
 org.apache.http.HttpResponse AbstractHttpClient.execute(HttpUriRequest request, org.apache.http.protocol.HttpContext context)
          Maps to execute(target, request, context).
<T> T
AbstractHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler)
           
<T> T
AbstractHttpClient.execute(HttpUriRequest request, ResponseHandler<? extends T> responseHandler, org.apache.http.protocol.HttpContext context)
           
 



Copyright © 1999-2011 The Apache Software Foundation. All Rights Reserved.