Uses of Class
org.apache.http.HttpException

Packages that use HttpException
org.apache.http The core interfaces and classes of the HTTP components. 
org.apache.http.entity Representations for HTTP message entities. 
org.apache.http.impl Default implementations for interfaces in org.apache.http
org.apache.http.impl.entity Default implementations for interfaces in org.apache.http.entity
org.apache.http.protocol HTTP protocol execution framework. 
org.apache.http.util Mostly utility classes with static helper methods for various purposes. 
 

Uses of HttpException in org.apache.http
 

Subclasses of HttpException in org.apache.http
 class MethodNotSupportedException
          Indicates that an HTTP method is not supported.
 class ProtocolException
          Signals that an HTTP protocol violation has occurred.
 class UnsupportedHttpVersionException
          Indicates an unsupported version of the HTTP protocol.
 

Methods in org.apache.http that throw HttpException
 void HttpRequestInterceptor.process(HttpRequest request, HttpContext context)
          Processes a request.
 void HttpClientConnection.sendRequestHeader(HttpRequest request)
          Sends the request line and all headers over the connection.
 void HttpClientConnection.sendRequestEntity(HttpEntityEnclosingRequest request)
          Sends the request entity over the connection.
 HttpResponse HttpClientConnection.receiveResponseHeader(HttpParams params)
          Receives the request line and headers of the next response available from this connection.
 void HttpClientConnection.receiveResponseEntity(HttpResponse response)
          Receives the next response entity available from this connection and attaches it to an existing HttpResponse object.
 void HttpResponseInterceptor.process(HttpResponse response, HttpContext context)
          Processes a response.
 HttpRequest HttpServerConnection.receiveRequestHeader(HttpParams params)
          Receives the request line and all headers available from this connection.
 void HttpServerConnection.receiveRequestEntity(HttpEntityEnclosingRequest request)
          Receives the next request entity available from this connection and attaches it to an existing request.
 void HttpServerConnection.sendResponseHeader(HttpResponse response)
          Sends the response line and headers of a response over this connection.
 void HttpServerConnection.sendResponseEntity(HttpResponse response)
          Sends the response entity of a response over this connection.
 

Uses of HttpException in org.apache.http.entity
 

Methods in org.apache.http.entity that throw HttpException
 long ContentLengthStrategy.determineLength(HttpMessage message)
           
 

Uses of HttpException in org.apache.http.impl
 

Methods in org.apache.http.impl that throw HttpException
 void AbstractHttpClientConnection.sendRequestHeader(HttpRequest request)
           
 void AbstractHttpClientConnection.sendRequestEntity(HttpEntityEnclosingRequest request)
           
protected  void AbstractHttpClientConnection.sendRequestLine(HttpRequest request)
           
protected  void AbstractHttpClientConnection.sendRequestHeaders(HttpRequest request)
           
 HttpResponse AbstractHttpClientConnection.receiveResponseHeader(HttpParams params)
           
 void AbstractHttpClientConnection.receiveResponseEntity(HttpResponse response)
           
protected  HttpResponse AbstractHttpClientConnection.readResponseStatusLine(HttpParams params)
           
protected  void AbstractHttpClientConnection.readResponseHeaders(HttpResponse response)
           
 HttpRequest AbstractHttpServerConnection.receiveRequestHeader(HttpParams params)
           
 void AbstractHttpServerConnection.receiveRequestEntity(HttpEntityEnclosingRequest request)
           
protected  HttpRequest AbstractHttpServerConnection.receiveRequestLine(HttpParams params)
           
protected  void AbstractHttpServerConnection.receiveRequestHeaders(HttpRequest request)
           
 void AbstractHttpServerConnection.sendResponseHeader(HttpResponse response)
           
 void AbstractHttpServerConnection.sendResponseEntity(HttpResponse response)
           
protected  void AbstractHttpServerConnection.sendResponseStatusLine(HttpResponse response)
           
protected  void AbstractHttpServerConnection.sendResponseHeaders(HttpResponse response)
           
 

Uses of HttpException in org.apache.http.impl.entity
 

Methods in org.apache.http.impl.entity that throw HttpException
protected  java.io.OutputStream EntitySerializer.doSerialize(HttpDataTransmitter datatransmitter, HttpMessage message)
           
 void EntitySerializer.serialize(HttpDataTransmitter datatransmitter, HttpMessage message, HttpEntity entity)
           
 long StrictContentLengthStrategy.determineLength(HttpMessage message)
           
 long LaxContentLengthStrategy.determineLength(HttpMessage message)
           
protected  BasicHttpEntity EntityDeserializer.doDeserialize(HttpDataReceiver datareceiver, HttpMessage message)
           
 HttpEntity EntityDeserializer.deserialize(HttpDataReceiver datareceiver, HttpMessage message)
           
 

Uses of HttpException in org.apache.http.protocol
 

Methods in org.apache.http.protocol with parameters of type HttpException
protected  void HttpService.handleException(HttpException ex, HttpResponse response)
           
 

Methods in org.apache.http.protocol that throw HttpException
 void RequestExpectContinue.process(HttpRequest request, HttpContext context)
           
 void RequestContent.process(HttpRequest request, HttpContext context)
           
 void HttpService.handleRequest(HttpServerConnection conn, HttpContext context)
           
protected  void HttpService.doService(HttpRequest request, HttpResponse response, HttpContext context)
           
 void RequestUserAgent.process(HttpRequest request, HttpContext context)
           
 void HttpRequestHandler.handle(HttpRequest request, HttpResponse response, HttpContext context)
           
 void ResponseContent.process(HttpResponse response, HttpContext context)
           
 void BasicHttpProcessor.process(HttpRequest request, HttpContext context)
           
 void BasicHttpProcessor.process(HttpResponse response, HttpContext context)
           
 void RequestConnControl.process(HttpRequest request, HttpContext context)
           
 void RequestTargetHost.process(HttpRequest request, HttpContext context)
           
 void ResponseConnControl.process(HttpResponse response, HttpContext context)
           
 HttpResponse HttpRequestExecutor.execute(HttpRequest request, HttpClientConnection conn, HttpContext context)
          Synchronously send a request and obtain the response.
protected  void HttpRequestExecutor.doPrepareRequest(HttpRequest request, HttpContext context)
          Prepare a request for sending.
protected  HttpResponse HttpRequestExecutor.doSendRequest(HttpRequest request, HttpClientConnection conn, HttpContext context)
          Send a request over a connection.
protected  HttpResponse HttpRequestExecutor.doReceiveResponse(HttpRequest request, HttpClientConnection conn, HttpContext context)
          Wait for and receive a response.
protected  void HttpRequestExecutor.doFinishResponse(HttpResponse response, HttpContext context)
          Finish a response.
 void HttpExpectationVerifier.verify(HttpRequest request, HttpResponse response, HttpContext context)
           
 void ResponseServer.process(HttpResponse response, HttpContext context)
           
 void ResponseDate.process(HttpResponse response, HttpContext context)
           
 

Uses of HttpException in org.apache.http.util
 

Methods in org.apache.http.util that throw HttpException
static Header[] HeaderUtils.parseHeaders(HttpDataReceiver datareceiver, int maxCount)
          Parses HTTP headers from the data receiver stream according to the generic format as given in Section 3.1 of RFC 822, RFC-2616 Section 4 and 19.3.
static Header[] HeaderUtils.parseHeaders(HttpDataReceiver datareceiver)
           
 



Copyright © 2005-2007 Apache Software Foundation. All Rights Reserved.