|
Append::file |
Append the returned results to the specified file. |
|
Arg::string |
The arguments to be passed in this HTTP call. |
|
ArgFile::name |
If the value to this tag is not a string but a dictionary point then it is taken as the name of a V4 stream that is to be used. |
|
ArgFile::file |
The contents of file are passed as the arguments to the HTTP call. |
|
Bearer::string |
Adds an Authorization Bearer header to the HTTP request. |
|
Certificate::list |
The list is a three element list consisting of (certificate-file cerficate-password ssl-cypher-list). These are passed via the CURL CURLOPT_SSLCERT, CURLOPT_KEYPASSWD and CURLOPT_SSL_CIPHER_LIST options. |
|
Certificate::file |
Pass the file via the CURL CURLOPT_SSLCERT option. |
|
Cookie::namevalue |
The namevalue must be formatted as name=value. Multiple instances of this tag can be used for multiple cookies. |
|
Create::file |
The results of the HTTP call are saved in this file. |
|
DateTime::datetime |
Sets the HTTP Date header to datetime. |
|
File::file |
The contents of this filname are passed in the call. This must be preceded with a Name tagged argument. |
|
Header::dimlist |
This defines a dimension to receive the returned HTTP headers. The dimlist value must be a dimension of type List. The returned headers will be returned as a list of points on the Alpha dimension. |
|
Header::list |
Define an HTTP header to be passed. The format of list must be ("header-name" "header-value"). Multiple Header tags can be declared. |
|
Include::file |
Takes the contents of file as the value of the prior Name. |
|
Name::string |
Defines a named argument for the call. The following argument is taken as the value. |
|
Object::string |
The name of the target object, usually a file name or executable. If this is specified then it is appended to the end of the URL value. |
|
Out::id |
Write the returned results of the HTTP call to the V4 stream identified by id. (See the Output module for more information.) |
|
Password::string |
The password to be used by this HTTP call. |
|
Retry::num |
On an HTTP failure, retry the HTTP call up to num times before generating V4 error. |
|
Trace::logical |
If logical is TRUE then output tracing information on the call. If FALSE (default) then do not output any trace debugging information. |
|
Trace::file |
Output tracing information into the file file. |
|
Type::string |
The content-type of the HTTP call. |
|
URL::string |
The URL to be invoked. |
|
User::string |
The user name associated with this HTTP call. The User argument and Password argument are concatenated into a semi-colon delimited security token |
|
UserAgent::string |
The string is passed as the CURL option CURLOPT_USERAGENT. |
|
Wait::seconds |
Normally this module will wait 'forever' for a response back from the server. This can be limited to a maximum wait time of seconds. The module fails if no response is received within this time period. |