|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.commons.httpclient.HttpMethodBase
An abstract base implementation of HttpMethod.
At minimum, subclasses will need to override:
getName()
to return the approriate name for this method
When a method's request may contain a body, subclasses will typically want to override:
getRequestContentLength()
to indicate the length (in bytes)
of that bodywriteRequestBody(HttpState,HttpConnection)
to write the bodyWhen a method requires additional request headers, subclasses will typically want to override:
addRequestHeaders(HttpState,HttpConnection)
to write those headers
When a method expects specific response headers, subclasses may want to override:
processResponseHeaders(HttpState,HttpConnection)
to handle those headers
Field Summary | |
protected static Header |
USER_AGENT
The User-Agent header sent on every request. |
Constructor Summary | |
HttpMethodBase()
No-arg constructor. |
|
HttpMethodBase(String uri)
Constructor specifying a URI. |
Method Summary | |
(package private) static void |
|
protected void |
addAuthorizationRequestHeader(HttpState state,
HttpConnection conn)
Generates Authorization request header if needed, as long as no Authorization request header already exists. |
protected void |
addContentLengthRequestHeader(HttpState state,
HttpConnection conn)
Generates Content-Length or Transfer-Encoding: Chunked request header, as long as no Content-Length request header already exists. |
protected void |
addCookieRequestHeader(HttpState state,
HttpConnection conn)
Generates Cookie request headers for those cookie s
that match the given host, port and path. |
protected void |
addHostRequestHeader(HttpState state,
HttpConnection conn)
Generates Host request header, as long as no Host request header already exists. |
protected void |
addProxyAuthorizationRequestHeader(HttpState state,
HttpConnection conn)
Generates Proxy-Authorization request header if needed, as long as no Proxy-Authorization request header already exists. |
protected void |
addProxyConnectionHeader(HttpState state,
HttpConnection conn)
Generates Proxy-Connection: Keep-Alive request header when communicating via a proxy server. |
void |
addRequestHeader(Header header)
Adds the specified request header, NOT overwriting any previous value. |
void |
addRequestHeader(String headerName,
String headerValue)
Adds the specified request header, NOT overwriting any previous value. |
protected void |
addRequestHeaders(HttpState state,
HttpConnection conn)
Generates all the required request header s
to be submitted via the given connection . |
void |
addResponseFooter(Header footer)
Use this method internally to add footers. |
protected void |
addUserAgentRequestHeader(HttpState state,
HttpConnection conn)
Generates default User-Agent request header, as long as no User-Agent request header already exists. |
protected void |
checkNotUsed()
Throws an IllegalStateException if the HTTP method has been already
executed , but not recycled . |
protected void |
checkUsed()
Throws an IllegalStateException if the HTTP method has not been
executed since last recycle . |
int |
execute(HttpState state,
HttpConnection conn)
Execute this HTTP method. |
protected void |
fakeResponse(StatusLine statusline,
HeaderGroup responseheaders,
InputStream responseStream)
This method is a dirty hack intended to work around current (2.0) design flaw that prevents the user from obtaining correct status code, headers and response body from the preceding HTTP CONNECT method. |
protected static String |
generateRequestLine(HttpConnection connection,
String name,
String requestPath,
String query,
String version)
Generates HTTP request line according to the specified attributes. |
String |
getAuthenticationRealm()
Returns authentication realm, if it has been used during authentication process. |
protected static String |
getContentCharSet(Header contentheader)
Returns the character set from the Content-Type header. |
boolean |
getDoAuthentication()
Returns true if the HTTP method should automatically handle HTTP authentication challenges (status code 401, etc.), false otherwise |
boolean |
getFollowRedirects()
Returns true if the HTTP method should automatically follow HTTP redirects (status code 302, etc.), false otherwise. |
HostConfiguration |
getHostConfiguration()
Returns the host configuration . |
MethodRetryHandler |
getMethodRetryHandler()
Returns the retry handler for this HTTP method |
abstract String |
getName()
Obtains the name of the HTTP method as used in the HTTP request line, for example "GET" or "POST". |
String |
getPath()
Gets the path of this HTTP method. |
String |
getProxyAuthenticationRealm()
Returns proxy authentication realm, if it has been used during authentication process. |
String |
getQueryString()
Gets the query string of this HTTP method. |
int |
getRecoverableExceptionCount()
Returns the number of "recoverable" exceptions thrown and handled, to allow for monitoring the quality of the connection. |
String |
getRequestCharSet()
Returns the character encoding of the request from the Content-Type header. |
protected int |
getRequestContentLength()
Return the length (in bytes) of my request body, suitable for use in a Content-Length header. |
Header |
getRequestHeader(String headerName)
Returns the specified request header. |
protected HeaderGroup |
getRequestHeaderGroup()
Gets the header group storing the request headers. |
Header[] |
getRequestHeaders()
Returns an array of the requests headers that the HTTP method currently has |
byte[] |
getResponseBody()
Returns the response body of the HTTP method, if any, as an array of bytes. |
InputStream |
getResponseBodyAsStream()
Returns the response body of the HTTP method, if any, as an InputStream . |
String |
getResponseBodyAsString()
Returns the response body of the HTTP method, if any, as a String . |
String |
getResponseCharSet()
Returns the character encoding of the response from the Content-Type header. |
protected int |
getResponseContentLength()
Return the length (in bytes) of the response body, as specified in a Content-Length header. |
Header |
getResponseFooter(String footerName)
Gets the response footer associated with the given name. |
Header[] |
getResponseFooters()
Returns an array of the response footers that the HTTP method currently has in the order in which they were read. |
Header |
getResponseHeader(String headerName)
Gets the response header associated with the given name. |
protected HeaderGroup |
getResponseHeaderGroup()
Gets the header group storing the response headers. |
Header[] |
getResponseHeaders()
Returns an array of the response headers that the HTTP method currently has in the order in which they were read. |
protected InputStream |
getResponseStream()
Returns a stream from which the body of the current response may be read. |
protected HeaderGroup |
getResponseTrailerHeaderGroup()
Gets the header group storing the response trailer headers
as per RFC 2616 section 3.6.1. |
int |
getStatusCode()
Returns the response status code. |
StatusLine |
getStatusLine()
Provides access to the response status line. |
String |
getStatusText()
Returns the status text (or "reason phrase") associated with the latest response. |
URI |
getURI()
Returns the URI of the HTTP method |
boolean |
hasBeenUsed()
Returns true if the HTTP method has been already executed ,
but not recycled . |
protected boolean |
isConnectionCloseForced()
Tests if the connection should be force-closed when no longer needed. |
boolean |
isHttp11()
Returns true if version 1.1 of the HTTP protocol should be used per default, false if version 1.0 should be used. |
boolean |
isStrictMode()
Returns the value of the strict mode flag. |
protected void |
processResponseBody(HttpState state,
HttpConnection conn)
This method is invoked immediately after readResponseBody(HttpState,HttpConnection) and can be overridden by
sub-classes in order to provide custom body processing. |
protected void |
processResponseHeaders(HttpState state,
HttpConnection conn)
This method is invoked immediately after readResponseHeaders(HttpState,HttpConnection) and can be overridden by
sub-classes in order to provide custom response headers processing. |
protected void |
processStatusLine(HttpState state,
HttpConnection conn)
This method is invoked immediately after readStatusLine(HttpState,HttpConnection) and can be overridden by
sub-classes in order to provide custom response status line processing. |
protected void |
readResponse(HttpState state,
HttpConnection conn)
Reads the response from the given connection . |
protected void |
readResponseBody(HttpState state,
HttpConnection conn)
Read the response body from the given HttpConnection . |
protected void |
readResponseHeaders(HttpState state,
HttpConnection conn)
Reads the response headers from the given connection . |
protected void |
readStatusLine(HttpState state,
HttpConnection conn)
Read the status line from the given HttpConnection , setting my
status code and status
text . |
void |
recycle()
Deprecated. no longer supported and will be removed in the future version of HttpClient |
void |
releaseConnection()
Releases the connection being used by this HTTP method. |
void |
removeRequestHeader(String headerName)
Remove the request header associated with the given name. |
protected void |
responseBodyConsumed()
A response has been consumed. |
protected void |
setConnectionCloseForced(boolean b)
Sets whether or not the connection should be force-closed when no longer needed. |
void |
setDoAuthentication(boolean doAuthentication)
Sets whether or not the HTTP method should automatically handle HTTP authentication challenges (status code 401, etc.) |
void |
setFollowRedirects(boolean followRedirects)
Sets whether or not the HTTP method should automatically follow HTTP redirects (status code 302, etc.) |
void |
setHostConfiguration(HostConfiguration hostConfiguration)
Sets the host configuration . |
void |
setHttp11(boolean http11)
/** Sets whether version 1.1 of the HTTP protocol should be used per default. |
void |
setMethodRetryHandler(MethodRetryHandler handler)
Sets the retry handler for this HTTP method |
void |
setPath(String path)
Sets the path of the HTTP method. |
void |
setQueryString(NameValuePair[] params)
Sets the query string of this HTTP method. |
void |
setQueryString(String queryString)
Sets the query string of this HTTP method. |
void |
setRequestHeader(Header header)
Sets the specified request header, overwriting any previous value. |
void |
setRequestHeader(String headerName,
String headerValue)
Set the specified request header, overwriting any previous value. |
protected void |
setResponseStream(InputStream responseStream)
Sets the response stream. |
void |
setStrictMode(boolean strictMode)
Defines how strictly HttpClient follows the HTTP protocol specification (RFC 2616 and other relevant RFCs). |
protected boolean |
shouldCloseConnection(HttpConnection conn)
Tests if the connection should be closed after the method has been executed. |
boolean |
validate()
Returns true the method is ready to execute, false otherwise. |
protected void |
writeRequest(HttpState state,
HttpConnection conn)
Sends the request via the given connection . |
protected boolean |
writeRequestBody(HttpState state,
HttpConnection conn)
Writes the request body to the given connection . |
protected void |
writeRequestHeaders(HttpState state,
HttpConnection conn)
Writes the request headers to the given connection . |
protected void |
writeRequestLine(HttpState state,
HttpConnection conn)
Writes the request line to the given connection . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
protected static final Header USER_AGENT
Constructor Detail |
public HttpMethodBase()
public HttpMethodBase(String uri) throws IllegalArgumentException, IllegalStateException
uri
- either an absolute or relative URI. The URI is expected
to be URL-encodedIllegalArgumentException
- when URI is invalidIllegalStateException
- when protocol of the absolute URI is not recognisedMethod Detail |
static void()
public abstract String getName()
getName
in interface HttpMethod
public URI getURI() throws URIException
getURI
in interface HttpMethod
URIException
- If the URI cannot be created.HttpMethod.getURI()
public void setFollowRedirects(boolean followRedirects)
setFollowRedirects
in interface HttpMethod
followRedirects
- true if the method will automatically follow redirects,
false otherwise.public boolean getFollowRedirects()
getFollowRedirects
in interface HttpMethod
public void setHttp11(boolean http11)
http11
- true to use HTTP/1.1, false to use 1.0public boolean getDoAuthentication()
getDoAuthentication
in interface HttpMethod
public void setDoAuthentication(boolean doAuthentication)
setDoAuthentication
in interface HttpMethod
doAuthentication
- true to process authentication challenges
authomatically, false otherwise.public boolean isHttp11()
public void setPath(String path)
setPath
in interface HttpMethod
path
- the path of the HTTP method. The path is expected
to be URL-encodedpublic void addRequestHeader(Header header)
addRequestHeader
in interface HttpMethod
header
- the header to add to the requestpublic void addResponseFooter(Header footer)
addResponseFooter
in interface HttpMethod
footer
- The footer to add.public String getPath()
getPath
in interface HttpMethod
public void setQueryString(String queryString)
setQueryString
in interface HttpMethod
queryString
- the query stringEncodingUtil.formUrlEncode(NameValuePair[], String)
public void setQueryString(NameValuePair[] params)
setQueryString
in interface HttpMethod
params
- an array of NameValuePair
s to add as query string
parameters. The name/value pairs will be automcatically
URL encodedEncodingUtil.formUrlEncode(NameValuePair[], String)
,
setQueryString(String)
public String getQueryString()
getQueryString
in interface HttpMethod
public void setRequestHeader(String headerName, String headerValue)
setRequestHeader
in interface HttpMethod
headerName
- the header's nameheaderValue
- the header's valuepublic void setRequestHeader(Header header)
setRequestHeader
in interface HttpMethod
header
- the headerpublic Header getRequestHeader(String headerName)
getRequestHeader
in interface HttpMethod
headerName
- The name of the header to be returned.public Header[] getRequestHeaders()
getRequestHeaders
in interface HttpMethod
protected HeaderGroup getRequestHeaderGroup()
header group
storing the request headers.protected HeaderGroup getResponseTrailerHeaderGroup()
header group
storing the response trailer headers
as per RFC 2616 section 3.6.1.protected HeaderGroup getResponseHeaderGroup()
header group
storing the response headers.public int getStatusCode()
getStatusCode
in interface HttpMethod
public StatusLine getStatusLine()
getStatusLine
in interface HttpMethod
public Header[] getResponseHeaders()
getResponseHeaders
in interface HttpMethod
public Header getResponseHeader(String headerName)
getResponseHeader
in interface HttpMethod
headerName
- the header name to matchprotected int getResponseContentLength()
Return -1 when the content-length is unknown.
public byte[] getResponseBody()
getResponseBody
in interface HttpMethod
public InputStream getResponseBodyAsStream() throws IOException
InputStream
.
If response body is not available, returns nullgetResponseBodyAsStream
in interface HttpMethod
IOException
- If an I/O (transport) problem occurs while obtaining the
response body.public String getResponseBodyAsString()
String
.
If response body is not available or cannot be read, returns null
The string conversion on the data is done using the character encoding specified
in Content-Type header.
Note: This will cause the entire response body to be buffered in memory. A
malicious server may easily exhaust all the VM memory. It is strongly
recommended, to use getResponseAsStream if the content length of the response
is unknown or resonably large.getResponseBodyAsString
in interface HttpMethod
public Header[] getResponseFooters()
getResponseFooters
in interface HttpMethod
public Header getResponseFooter(String footerName)
getResponseFooter
in interface HttpMethod
footerName
- the footer name to matchprotected void setResponseStream(InputStream responseStream)
responseStream
- The new response stream.protected InputStream getResponseStream()
responseBodyConsumed
has been called, or if the stream returned by a previous call has been closed,
null
will be returned.public String getStatusText()
getStatusText
in interface HttpMethod
public void setStrictMode(boolean strictMode)
setStrictMode
in interface HttpMethod
strictMode
- true for strict mode, false otherwisepublic boolean isStrictMode()
isStrictMode
in interface HttpMethod
public void addRequestHeader(String headerName, String headerValue)
addRequestHeader
in interface HttpMethod
headerName
- the header's nameheaderValue
- the header's valueprotected boolean isConnectionCloseForced()
true
if the connection must be closedprotected void setConnectionCloseForced(boolean b)
true
in abnormal
circumstances, such as HTTP protocol violations.b
- true
if the connection must be closed, false
otherwise.protected boolean shouldCloseConnection(HttpConnection conn)
conn
- the connection in questionpublic int execute(HttpState state, HttpConnection conn) throws HttpException, HttpRecoverableException, IOException
execute
in interface HttpMethod
state
- state
information to associate with this
request. Must be non-null.conn
- the connection
to used to execute
this HTTP method. Must be non-null.
Note that we cannot currently support redirects that
change the HttpConnection parameters (host, port, protocol)
because we don't yet have a good way to get the new connection.
For the time being, we just return the 302 response, and allow
the user agent to resubmit if desired.IOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodpublic boolean hasBeenUsed()
executed
,
but not recycled
.hasBeenUsed
in interface HttpMethod
public void recycle()
recycle
in interface HttpMethod
releaseConnection()
public void releaseConnection()
releaseConnection
in interface HttpMethod
public void removeRequestHeader(String headerName)
removeRequestHeader
in interface HttpMethod
headerName
- the header namepublic boolean validate()
validate
in interface HttpMethod
protected int getRequestContentLength()
Return -1 when the content-length is unknown.
This implementation returns 0, indicating that the request has no body.
protected void addAuthorizationRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addContentLengthRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addCookieRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
cookie
s
that match the given host, port and path.state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addHostRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addProxyAuthorizationRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addProxyConnectionHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void addRequestHeaders(HttpState state, HttpConnection conn) throws IOException, HttpException
header
s
to be submitted via the given connection
.
This implementation adds User-Agent, Host, Cookie, Content-Length, Transfer-Encoding, and Authorization headers, when appropriate.
Subclasses may want to override this method to to add additional headers, and may choose to invoke this implementation (via super) to add the "standard" headers.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodwriteRequestHeaders(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void addUserAgentRequestHeader(HttpState state, HttpConnection conn) throws IOException, HttpException
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void checkNotUsed() throws IllegalStateException
IllegalStateException
if the HTTP method has been already
executed
, but not recycled
.IllegalStateException
- if the method has been used and not
recycledprotected void checkUsed() throws IllegalStateException
IllegalStateException
if the HTTP method has not been
executed
since last recycle
.IllegalStateException
- if not usedprotected static String generateRequestLine(HttpConnection connection, String name, String requestPath, String query, String version)
connection
- the connection
used to execute
this HTTP methodname
- the method name generate a request forrequestPath
- the path string for the requestquery
- the query string for the requestversion
- the protocol version to use (e.g. HTTP/1.0)protected void processResponseBody(HttpState state, HttpConnection conn)
readResponseBody(HttpState,HttpConnection)
and can be overridden by
sub-classes in order to provide custom body processing.
This implementation does nothing.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodreadResponse(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
readResponseBody(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void processResponseHeaders(HttpState state, HttpConnection conn)
readResponseHeaders(HttpState,HttpConnection)
and can be overridden by
sub-classes in order to provide custom response headers processing.
This implementation will handle the Set-Cookie and
Set-Cookie2 headers, if any, adding the relevant cookies to
the given HttpState
.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodreadResponse(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
readResponseHeaders(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void processStatusLine(HttpState state, HttpConnection conn)
readStatusLine(HttpState,HttpConnection)
and can be overridden by
sub-classes in order to provide custom response status line processing.state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodreadResponse(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
readStatusLine(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void readResponse(HttpState state, HttpConnection conn) throws HttpException
connection
.
The response is processed as the following sequence of actions:
readStatusLine(HttpState,HttpConnection)
is
invoked to read the request line.
processStatusLine(HttpState,HttpConnection)
is invoked, allowing the method to process the status line if
desired.
readResponseHeaders(HttpState,HttpConnection)
is invoked to read
the associated headers.
processResponseHeaders(HttpState,HttpConnection)
is invoked, allowing
the method to process the headers if desired.
readResponseBody(HttpState,HttpConnection)
is
invoked to read the associated body (if any).
processResponseBody(HttpState,HttpConnection)
is invoked, allowing the
method to process the response body if desired.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void readResponseBody(HttpState state, HttpConnection conn) throws IOException, HttpException
HttpConnection
.
The current implementation wraps the socket level stream with an appropriate stream for the type of response (chunked, content-length, or auto-close). If there is no response body, the connection associated with the request will be returned to the connection manager.
Subclasses may want to override this method to to customize the processing.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodreadResponse(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
processResponseBody(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void readResponseHeaders(HttpState state, HttpConnection conn) throws IOException, HttpException
connection
.
Subclasses may want to override this method to to customize the processing.
"It must be possible to combine the multiple header fields into one "field-name: field-value" pair, without changing the semantics of the message, by appending each subsequent field-value to the first, each separated by a comma." - HTTP/1.0 (4.3)
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodreadResponse(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
processResponseHeaders(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
protected void readStatusLine(HttpState state, HttpConnection conn) throws IOException, HttpRecoverableException, HttpException
HttpConnection
, setting my
status code
and status
text
.
Subclasses may want to override this method to to customize the processing.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodStatusLine
protected void writeRequest(HttpState state, HttpConnection conn) throws IOException, HttpException
Sends the request via the given connection
.
The request is written as the following sequence of actions:
writeRequestLine(HttpState, HttpConnection)
is invoked to
write the request line.
writeRequestHeaders(HttpState, HttpConnection)
is invoked
to write the associated headers.
writeRequestBody(HttpState, HttpConnection)
is invoked to
write the body part of the request.
Subclasses may want to override one or more of the above methods to to customize the processing. (Or they may choose to override this method if dramatically different processing is required.)
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected boolean writeRequestBody(HttpState state, HttpConnection conn) throws IOException, HttpException
connection
.
This method should return true if the request body was actually sent (or is empty), or false if it could not be sent for some reason.
This implementation writes nothing and returns true.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodprotected void writeRequestHeaders(HttpState state, HttpConnection conn) throws IOException, HttpException
connection
.
This implementation invokes addRequestHeaders(HttpState,HttpConnection)
,
and then writes each header to the request stream.
Subclasses may want to override this method to to customize the processing.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodaddRequestHeaders(org.apache.commons.httpclient.HttpState, org.apache.commons.httpclient.HttpConnection)
,
getRequestHeaders()
protected void writeRequestLine(HttpState state, HttpConnection conn) throws IOException, HttpException
connection
.
Subclasses may want to override this method to to customize the processing.
state
- the state
information associated with this methodconn
- the connection
used to execute
this HTTP methodIOException
- if an I/O (transport) error occursHttpException
- if a protocol exception occurs.HttpRecoverableException
- if a recoverable transport error occurs.
Usually this kind of exceptions can be recovered from by
retrying the HTTP methodgenerateRequestLine(org.apache.commons.httpclient.HttpConnection, java.lang.String, java.lang.String, java.lang.String, java.lang.String)
public String getProxyAuthenticationRealm()
public String getAuthenticationRealm()
protected static String getContentCharSet(Header contentheader)
contentheader
- The content header.public String getRequestCharSet()
public String getResponseCharSet()
public int getRecoverableExceptionCount()
protected void responseBodyConsumed()
The default behavior for this class is to check to see if the connection should be closed, and close if need be, and to ensure that the connection is returned to the connection manager - if and only if we are not still inside the execute call.
public HostConfiguration getHostConfiguration()
host configuration
.getHostConfiguration
in interface HttpMethod
public void setHostConfiguration(HostConfiguration hostConfiguration)
host configuration
.hostConfiguration
- The hostConfiguration to setpublic MethodRetryHandler getMethodRetryHandler()
retry handler
for this HTTP methodpublic void setMethodRetryHandler(MethodRetryHandler handler)
retry handler
for this HTTP methodhandler
- the methodRetryHandler to use when this method executedprotected void fakeResponse(StatusLine statusline, HeaderGroup responseheaders, InputStream responseStream)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |