HTTP
Form
Send form data to a URL
Calling Sequence
Parameters
Options
Description
Examples
Compatibility
Form(URI, formdata)
URI
-
host, port, and URL path of the form http://host:port/path/to/file; the uniform resource identifier
formdata
content of the form given as a list of string=string values.
headers=list
list of header values; duplicate values will be combined into a single comma-separated list.
method= a string
either "GET" or "POST". Specify whether to submit form data as a get or post request. The default is POST.
timeout=posint
the number of seconds to wait for data before timing out.
forcemode=name
either text or binary. This forces the transfer to be done in the given mode regardless of the Content-Type reported by the server.
Form is a higher level command that accepts the form data as a list of equations, and then properly formats it as an HTTP request.
The HTTP[Form] command was introduced in Maple 15.
For more information on Maple 15 changes, see Updates in Maple 15.
See Also
HTTP[Code]
HTTP[Post]
Download Help Document