|

ProxyData


(table) A table containing the user's proxy information. You can pass nil (the default) to use the default proxy settings that are currently configured through Internet Explorer (recommended), or pass a table of specific proxy settings. (You may need to gather this information from the user.)


The table is indexed by the following keys:



KEY


TYPE DESCRIPTION


PUserName


string


The proxy user name.


PPassword


string


The proxy password.


PServerAddress


string


The proxy server address.


Re t u r n s


(string) The contents of the file returned by the web script. If an error occurs, a blank string "" is returned. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

HTTP.SubmitSecure

OverviewExamples

string HTTP.SubmitSecure ( string URL,


table Values,


number Method = SUBMITWEB_GET,


number Timeout = 20,


number Port = 443,


table AuthData = nil,


table ProxyData = nil )


De s cr ip t ion


Submits data to an Internet Web site using HTTPS (secure hypertext transfer protocol) and returns the response from the server.


image

The secure hypertext transfer protocol (HTTPS) is a communications protocol designed to transfer encrypted information between computers over the World Wide Web. HTTPS is http using a Secure Socket Layer (SSL). A secure socket layer is an encryption protocol invoked on a Web server that uses HTTPS.


Note: The successful use of the HTTPS protocol requires a secure server to handle the request.


Note: This action requires that the end user has Internet Explorer version 4.0 or greater installed.


Note: The default proxy settings that are currently configured through Internet Explorer will be used for submitting the data by default, and is the recommended method. However if you require alternate proxy settings, they can be passed through the ProxyData parameter.


Tip: If this action fails, you can retrieve specific HTTP error details using HTTP.GetHTTPErrorInfo.


P arame t er s


URL


(string) The full URL to the file you want to submit to.


|