static void |
HttpOp.execHttpDelete(java.lang.String url,
HttpResponseHandler handler) |
Executes a HTTP DELETE operation
|
static void |
HttpOp.execHttpDelete(java.lang.String url,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP DELETE operation
|
static void |
HttpOp.execHttpGet(java.lang.String url,
java.lang.String acceptHeader,
HttpResponseHandler handler) |
Executes a HTTP Get request, handling the response with given handler.
|
static void |
HttpOp.execHttpGet(java.lang.String url,
java.lang.String acceptHeader,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP Get request handling the response with one of the given
handlers
|
static void |
HttpOp.execHttpHead(java.lang.String url,
java.lang.String acceptString,
HttpResponseHandler handler) |
Executes a HTTP HEAD operation
|
static void |
HttpOp.execHttpHead(java.lang.String url,
java.lang.String acceptString,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP HEAD operation
|
static void |
HttpOp.execHttpPost(java.lang.String url,
java.lang.String contentType,
java.io.InputStream input,
long length,
java.lang.String acceptType,
HttpResponseHandler handler) |
Executes a HTTP POST with request body from an input stream and response
handling.
|
static void |
HttpOp.execHttpPost(java.lang.String url,
java.lang.String contentType,
java.io.InputStream input,
long length,
java.lang.String acceptType,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP POST with request body from an input stream and response
handling.
|
static void |
HttpOp.execHttpPost(java.lang.String url,
java.lang.String contentType,
java.lang.String content,
java.lang.String acceptType,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP POST with a string as the request body and response
handling
|
static void |
HttpOp.execHttpPost(java.lang.String url,
org.apache.http.HttpEntity entity,
java.lang.String acceptString,
HttpResponseHandler handler) |
Executes a HTTP Post
|
static void |
HttpOp.execHttpPost(java.lang.String url,
org.apache.http.HttpEntity entity,
java.lang.String acceptHeader,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
POST with response body.
|
static void |
HttpOp.execHttpPostForm(java.lang.String url,
Params params,
java.lang.String acceptString,
HttpResponseHandler handler) |
Executes a HTTP POST form operation
|
static void |
HttpOp.execHttpPostForm(java.lang.String url,
Params params,
java.lang.String acceptHeader,
HttpResponseHandler handler,
org.apache.http.client.HttpClient httpClient,
org.apache.http.protocol.HttpContext httpContext) |
Executes a HTTP POST form operation
|