2018.2

Table Of Contents
password, pass empty strings:
request.open
("GET",url,"","");
l send()
l send(String requestBody)
Sends an HTTP request and returns the
HTTP status code. Blocked call.
getResponseHeader(String header) Gets the ResponseHeader by name.
getResponseHeaders() Returns the full response headers of the
last HTTP request.
getRequestBody() Gets the HTTP request body (for POST
and PUT).
setRequestHeader(String requestHeader,
String value)
Adds an additional HTTP request
header.
getResponseBody() Returns the full response body of the last
HTTP request.
setRequestBody(String requestBody) Sets the HTTP request body (for POST
and PUT).
getPassword() Gets the password for HTPP basic
authentication
setPassword(String password) Sets the password for HTPP basic
authentication
getTimeout() Gets the time to wait for the server's
response
setTimeout(int timeout) Sets the time (in ms.) to wait for the
server's response.
Page 362