This action enables you to download a file using the http protocol.
The web address location of the file or resource to be downloaded or existence checked.
Port of the server to communicate on. Typically 80 for http.
Redirect responses (in the 300 range) will be treated as successes, and then processed to find the actual location of the resource.
The username for any security challenge on the server holding the resource in question.
The password required for the above username.
The resource isn't saved to a variable or file however the full GET response is received and checked that it is.
Saves response to the specified file. Check the "Overwrite existing file" option to override the file each time.
Saves the response to a project variable for use later as needed.
Check to use a proxy for the HTTP GET requests.
Port to use on the proxy server for HTTP GET requests.
The username for any security challenge on the proxy server.
The password required for the above username.
Typically anything with a response less than 300 will be treated as a successful response. These are namely:
100 Continue
101 Switching Protocols
102 Processing (WebDAV)
200 OK
201 Created
202 Accepted
203 Non-Authoritative Information
204 No Content
205 Reset Content
206 Partial Content
207 Multi-Status (WebDAV)
208 Already Reported (WebDAV)
226 IM Used (RFC 3229)
Any other responses will be treated as errors. If the handling of redirects is turned on then all 300 range (300..308) response codes will be handled internally to redirect the HTTP GET Request to the new location.