Deprecated Methods |
org.apache.commons.httpclient.methods.PostMethod.addParameter(NameValuePair)
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.methods.PostMethod.addParameter(String, String)
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.methods.PostMethod.addParameters(NameValuePair[])
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.RequestOutputStream.close()
Use ChunkedOutputStream; |
org.apache.commons.httpclient.ResponseInputStream.close()
Use ChunkedInputStream; |
org.apache.commons.httpclient.Cookie.createCookieHeader(String, int, String, boolean, Cookie[])
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.createCookieHeader(String, int, String, boolean, Date, Cookie[])
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.createCookieHeader(String, String, boolean, Cookie[])
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.createCookieHeader(String, String, Cookie[])
use CookieSpec interface |
org.apache.commons.httpclient.HttpClient.endSession()
this method has no effect. HttpMethod.releaseConnection()
should be used to release resources after a HttpMethod has been executed. |
org.apache.commons.httpclient.HttpState.getCookies(String, int, String, boolean, Date)
use HttpState.getCookies(String, int, String, boolean) |
org.apache.commons.httpclient.methods.GetMethod.getFileData()
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.PostMethod.getParameter(String)
use EntityEnclosingMethod.getRequestBody() or
EntityEnclosingMethod.getRequestBodyAsString() . |
org.apache.commons.httpclient.methods.PostMethod.getParameters()
use EntityEnclosingMethod.getRequestBody() or
EntityEnclosingMethod.getRequestBodyAsString() . |
org.apache.commons.httpclient.HttpConnection.getRequestOutputStream(boolean)
Use new ChunkedOutputStream(httpConnecion.getRequestOutputStream()); |
org.apache.commons.httpclient.HttpConnection.getResponseInputStream(HttpMethod)
Use getResponseInputStream() instead. |
org.apache.commons.httpclient.methods.GetMethod.getTempDir()
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod.getTempFile()
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod.getUseDisk()
the client is responsible for disk I/O |
org.apache.commons.httpclient.RequestOutputStream.isUseChunking()
Use ChunkedOutputStream; |
org.apache.commons.httpclient.Cookie.matches(String, int, String, boolean)
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.matches(String, int, String, boolean, Date)
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.parse(String, int, String, boolean, Header)
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.parse(String, String, boolean, Header)
use CookieSpec interface |
org.apache.commons.httpclient.Cookie.parse(String, String, Header)
use CookieSpec interface |
org.apache.commons.httpclient.RequestOutputStream.print(String)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.RequestOutputStream.println()
Use ChunkedOutputStream; |
org.apache.commons.httpclient.RequestOutputStream.println(String)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.ResponseInputStream.read()
Use ChunkedInputStream; |
org.apache.commons.httpclient.ResponseInputStream.read(byte[], int, int)
Use ChunkedInputStream; |
org.apache.commons.httpclient.methods.PostMethod.removeParameter(String)
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.methods.PostMethod.removeParameter(String, String)
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.methods.GetMethod.setFileData(File)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.PostMethod.setParameter(String, String)
use PostMethod.setRequestBody(NameValuePair[]) . |
org.apache.commons.httpclient.HttpConnection.setSecure(boolean)
use setProtocol(Protocol) |
org.apache.commons.httpclient.methods.GetMethod.setTempDir(String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod.setTempFile(String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.RequestOutputStream.setUseChunking(boolean)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.methods.GetMethod.setUseDisk(boolean)
the client is responsible for disk I/O |
org.apache.commons.httpclient.HttpClient.startSession(String, int)
use hostConfiguration
Sets the host, port and protocol(http) to be used when executing a
method. |
org.apache.commons.httpclient.HttpClient.startSession(String, int, boolean)
use hostConfiguration
Sets the host, port and protocol to be used when executing a method. |
org.apache.commons.httpclient.HttpClient.startSession(String, int, Credentials)
use hostConfiguration and httpState
Sets the host, port, protocol(http) and credentials to be used when
executing a method. |
org.apache.commons.httpclient.HttpClient.startSession(String, int, Credentials, boolean)
use hostConfiguration and httpState
Sets the host, port, protocol and credentials to be used when executing a
method. |
org.apache.commons.httpclient.HttpClient.startSession(String, int, String, int)
use hostConfiguration
Sets the host, port, protocol(http) and proxy to be used when executing a
method. |
org.apache.commons.httpclient.HttpClient.startSession(String, int, String, int, boolean)
use hostConfiguration
Sets the host, port, protocol and proxy to be used when executing a
method. |
org.apache.commons.httpclient.HttpClient.startSession(URI)
use hostConfiguration and httpState
Sets the host, port, protocol and credentials to be used when executing a
method using the server specified by the scheme, userinfo, host and port
of the given uri.
Note that the path component is not utilized.
|
org.apache.commons.httpclient.HttpClient.startSession(URL)
use hostConfiguration
Sets the host, port and protocol to be used when executing a method.
Note that everything but the protocol, host and port of the
given url is ignored.
|
org.apache.commons.httpclient.HttpClient.startSession(URL, Credentials)
use hostConfiguration and httpState
Sets the host, port, protocol and credentials to be used when executing a
method.
Note that everything but the protocol, host and port of the
given url is ignored.
|
org.apache.commons.httpclient.RequestOutputStream.write(byte[], int, int)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.RequestOutputStream.write(int)
Use ChunkedOutputStream; |
Deprecated Constructors |
org.apache.commons.httpclient.methods.EntityEnclosingMethod(String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.EntityEnclosingMethod(String, String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod(String, File)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod(String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.GetMethod(String, String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.HttpConnection(String, int, boolean)
use HttpConnection(String, int, Protocol) |
org.apache.commons.httpclient.HttpConnection(String, int, String, int, boolean)
use HttpConnection(String, int, String, int, Protocol) |
org.apache.commons.httpclient.methods.PostMethod(String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.methods.PostMethod(String, String, String)
the client is responsible for disk I/O |
org.apache.commons.httpclient.RequestOutputStream(OutputStream)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.RequestOutputStream(OutputStream, boolean)
Use ChunkedOutputStream; |
org.apache.commons.httpclient.ResponseInputStream(InputStream, boolean, int)
Use ChunkedInputStream; |
org.apache.commons.httpclient.ResponseInputStream(InputStream, HttpMethod)
Use ChunkedInputStream; |
org.apache.commons.httpclient.URI(URL)
currently somewhat wrong and diffrent with java.net.URL usage |