Package | Description |
---|---|
lucee.commons.net.http | |
lucee.commons.net.http.httpclient3 | |
lucee.commons.net.http.httpclient4 | |
lucee.runtime.util |
Modifier and Type | Method and Description |
---|---|
Header[] |
HTTPResponse.getAllHeaders() |
Header |
HTTPResponse.getLastHeader(String name) |
Header |
HTTPResponse.getLastHeaderIgnoreCase(String name) |
static Header |
HTTPEngine.header(String name,
String value) |
Modifier and Type | Method and Description |
---|---|
static HTTPResponse |
HTTPEngine.delete(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine.get(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine.head(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine.put(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String mimetype,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Object body) |
Modifier and Type | Class and Description |
---|---|
class |
HeaderImpl |
class |
HeaderWrap |
Modifier and Type | Method and Description |
---|---|
Header[] |
HTTPResponse3Impl.getAllHeaders() |
Header |
HTTPResponse3Impl.getLastHeader(String name) |
Header |
HTTPResponse3Impl.getLastHeaderIgnoreCase(String name) |
static Header |
HTTPEngine3Impl.header(String name,
String value) |
Modifier and Type | Method and Description |
---|---|
static HTTPResponse |
HTTPEngine3Impl.delete(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine3Impl.get(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine3Impl.head(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers) |
static HTTPResponse |
HTTPEngine3Impl.post(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Map<String,String> params) |
static HTTPResponse |
HTTPEngine3Impl.put(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Object body) |
Modifier and Type | Method and Description |
---|---|
Header[] |
HTTPResponse4Impl.getAllHeaders() |
Header |
HTTPResponse4Impl.getLastHeader(String name) |
static Header |
HTTPResponse4Impl.getLastHeaderIgnoreCase(org.apache.http.HttpResponse rsp,
String name) |
Header |
HTTPResponse4Impl.getLastHeaderIgnoreCase(String name) |
static Header |
HTTPEngine4Impl.header(String name,
String value) |
static Header |
HTTPEngineImpl.header(String name,
String value) |
Modifier and Type | Method and Description |
---|---|
static HTTPResponse |
HTTPEngineImpl.delete(URL url,
String username,
String password,
long timeout,
boolean redirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http delete request
|
static HTTPResponse |
HTTPEngine4Impl.delete(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http delete request
|
static HTTPResponse |
HTTPEngineImpl.get(URL url,
String username,
String password,
long timeout,
boolean redirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http get request
|
static HTTPResponse |
HTTPEngine4Impl.get(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http get request
|
static HTTPResponse |
HTTPEngineImpl.head(URL url,
String username,
String password,
long timeout,
boolean redirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http head request
|
static HTTPResponse |
HTTPEngine4Impl.head(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http head request
|
static HTTPResponse |
HTTPEngineImpl.post(URL url,
String username,
String password,
long timeout,
boolean redirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http post request
|
static HTTPResponse |
HTTPEngineImpl.post(URL url,
String username,
String password,
long timeout,
boolean redirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Map<String,String> formfields) |
static HTTPResponse |
HTTPEngine4Impl.post(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers)
does a http post request
|
static HTTPResponse |
HTTPEngine4Impl.post(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Map<String,String> formfields) |
static HTTPResponse |
HTTPEngineImpl.put(URL url,
String username,
String password,
long timeout,
boolean redirect,
String mimetype,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Object body)
does a http put request
|
static HTTPResponse |
HTTPEngine4Impl.put(URL url,
String username,
String password,
long timeout,
int maxRedirect,
String mimetype,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Object body)
does a http put request
|
Modifier and Type | Method and Description |
---|---|
HTTPResponse |
HTTPUtilImpl.delete(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers) |
HTTPResponse |
HTTPUtil.delete(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers) |
HTTPResponse |
HTTPUtilImpl.get(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers) |
HTTPResponse |
HTTPUtil.get(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers)
make a http requst to given url
|
HTTPResponse |
HTTPUtilImpl.head(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers) |
HTTPResponse |
HTTPUtil.head(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers) |
HTTPResponse |
HTTPUtilImpl.put(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers,
Object body) |
HTTPResponse |
HTTPUtil.put(URL url,
String username,
String password,
int timeout,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers,
Object body) |
HTTPResponse |
HTTPUtilImpl.put(URL url,
String username,
String password,
int timeout,
String mimetype,
String charset,
String useragent,
String proxyserver,
int proxyport,
String proxyuser,
String proxypassword,
Header[] headers,
Object body) |
Copyright © 2015 Lucee