Protocol (HttpRequest property)
HTTP request protocol (HttpRequest class)
This property sets and returns the TCP/IP protocol for the HTTP request.
The protocols supported
are http
(standard web protocol) and https
(Secure Sockets Layer, or, SSL).
If left unset, it defaults to http
.
Syntax
%currentString = httpRequest:Protocol httpRequest:Protocol = newString
Syntax terms
%httpreq | A previously defined and instantiated HTTPRequest object. |
---|---|
protocolval | A string expression that identifies the protocol to use. It must have a value of http or https . It is case insensitive. If the value is not http or https , the request is cancelled.
|
%curr | A string or longstring variable for the assignment of the current value of Protocol. |
Usage notes
- You must not set a Protocol value that conflicts with the protocol
specified on the JANUS CLSOCK port definition your HTTP request will reference.
For example, to successfully use
https
as the Protocol value, the Janus port definition must specify both the SSL and SSLOPT parameters. - Setting the TCP/IP protocol to
https
automatically sets the Port property to the standard SSL port (443). Setting the protocol tohttp
automatically sets Port to the standard HTTP port (80).