CGI: specifies an HTTP header. Encodes the value depending on the attribute "encoded
body: specifies the body of the HTTP request.
XML: identifies the request as having a content-type of text/xml. Specifies that the value attribute contains the body of the HTTP request. Used to send XML to the destination URL.
file: tells Lucee to send the contents of the specified file.
URL: specifies a URL query string name-value pair to append to the cfhttp url attribute.
form,formField: specifies a form field to send.
cookie: specifies a cookie to send as an HTTP header.
URL
value
any, optional
Specifies the value of the URL, FormField, Cookie, File, or CGI variable being passed.
file
string, optional
Required for type = File.
encoded
boolean, optional
Applies to type cgi and url, ignored for all other types.
Specifies whether to URL encode the values defined with the tag, but only if necessary (no double encoding).
mimetype
string, optional
Applies to File type; invalid for all other types.
Specifies the MIME media type of the file contents.
The content type can include an identifier for the character encoding of the file;
For example, text/html; charset=ISO-8859-1 indicates that the file is HTML text in the ISO Latin-1 character encoding.