Methods in railo.commons.net.http that return HTTPResponse |
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)
|
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.post(URL url)
|
static HTTPResponse |
HTTPEngine.post(URL url,
String username,
String password,
long 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)
|
Methods in railo.commons.net.http.httpclient3 that return HTTPResponse |
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)
|
static HTTPResponse |
HTTPEngine3Impl.put(URL url,
String username,
String password,
int timeout,
int maxRedirect,
String charset,
String useragent,
ProxyData proxy,
Header[] headers,
Object body)
|
Methods in railo.commons.net.http.httpclient4 that return HTTPResponse |
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 |
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 |
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 |
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.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 |
Methods in railo.runtime.util that return HTTPResponse |
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)
|