| | |
Constant | Description | Used by |
---|
auAutomatic | HTTP authentication method: Automatic authentication method. | Web service properties |
auBasic | HTTP authentication method: Basic authentication method. The name and password are passed as clear text in the request. | httpRequest variable restRequest variable Web service properties |
auDigest | HTTP authentication method: The name and password are hashed in the request. | httpRequest variable restRequest variable |
auNegotiate | HTTP authentication method: The client and server exchange a certain amount of information before establishing a connection. Kerberos is the default authentication protocol. If it is not available, the NTLM protocol is used. | httpRequest variable restRequest variable Web service properties |
auNTLM | HTTP authentication method: The client and server exchange a certain amount of information before establishing a connection via the NTLM protocol (Windows only). | httpRequest variable restRequest variable |
httpConfigureDisableCache | In secure mode (HTTPS), used to manage the cache of Internet Explorer. The possible values are:- 0 (by default): Used to re-enable the cache of Internet Explorer.
- 1: Used to disable the cache of Internet Explorer.
| HTTPConfigure |
httpConfigureDisableCookie | In secure mode (HTTPS), used to configure the mode for managing the HTTP cookies of Internet Explorer. The <New value> associated with this constant can be:- 0 (False by default): Used to re-enable the management of HTTP cookies of Internet Explorer.
- 1 (True): Used to disable the management of HTTP cookies of Internet Explorer.
| HTTPConfigure |
httpConfigureMode | Used to configure the management mode of requests. The possible values are:- 0: Standard management mode of requests, performed by WINDEV or WEBDEV (default value).
- 1: Request handling mode defined by Internet Explorer. This value should be used in very specific cases and can cause changes in behavior.
| HTTPConfigure |
httpCookie | Used to retrieve the block of cookies (extracted from the HTTP headers). | HTTPGetResult |
httpCopy | Sends a form via the COPY method. | HTTPSendForm httpRequest variable |
httpDelete | Sends a form with a DELETE request. | HTTPSendForm httpRequest variable |
httpErrorExpiredCertificate | Error returned by ErrorInfo(ErrCode)
Invalid or expired certificate date | HTTPRequest, HTTPSend |
httpErrorInvalidCertificate | Error returned by ErrorInfo(ErrCode)
The site name specified in the certificate does not correspond to a server | HTTPRequest, HTTPSend |
httpErrorInvalidCertificateName | Error returned by ErrorInfo(ErrCode)
The site name specified in the certificate does not correspond to a server | HTTPRequest, HTTPSend |
httpErrorRedirectToHTTP | Error returned by ErrorInfo(ErrCode)
Redirection to a non-secure server | HTTPRequest, HTTPSend |
httpErrorRedirectToHTTPS | Error returned by ErrorInfo(ErrCode)
Redirection to a secure server | HTTPRequest, HTTPSend |
httpGet | Sends a form with a GET request. | HTTPSendForm httpRequest variable |
httpHead | Sends a form via the HEAD method. | HTTPSendForm httpRequest variable |
httpHeader | Used to retrieve the header of the last HTTP request | HTTPGetResult |
httpIgnoreDeprecated | If an invalid algorithm error is encountered, the request can be executed again, ignoring this error. To do so, use HTTP.IgnoreError = httpIgnoreDeprecated
The certificate is ignored | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreExpiredCertificate | If a certificate expiration date error is encountered, the request can be executed again, ignoring this error. To do so, use HTTP.IgnoreError = httpIgnoreExpiredCertificate
The certificate date is ignored. | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreInvalidCertificate | If a certificate validity error is encountered, the request can be executed again, ignoring this error. To do so, use HTTP.IgnoreError = httpIgnoreInvalidCertificate
The certificate is ignored | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreInvalidCertificateName | If a certificate name error is encountered, the request can be executed again, ignoring this error. To do so, use HTTP.IgnoreError = httpIgnoreInvalidCertificateName
The site name specified in the certificate is ignored. | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreRedirection | Used to ignore the redirection to a page. | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreRedirectToHTTP | If an error occurs, you have the ability to re-run the request while ignoring the error. To do so, all use HTTP.IgnoreError = httpIgnoreRedirectToHTTP
The redirection to a non-secure server is allowed. | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreRedirectToHTTPS | If an error occurs, you have the ability to re-run the request while ignoring the error. To do so, all you have to do is use HTTP.IgnoreError = httpIgnoreRedirectToHTTPS
The redirection to a secure server is allowed. | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreRevocation | Used to ignore the check for the list of revoked certificates. To do so, all you have to do is use HTTP.IgnoreError = httpIgnoreRevocation | HTTPRequest, HTTPSend httpRequest variable |
httpIgnoreUnsafeRenegotiation | If an unsafe renegotiation error is encountered, the request can be executed again, ignoring this error. To do so, use HTTP.IgnoreError = httpIgnoreUnsafeRenegotiation
The redirection to a non-secure server is allowed. | HTTPRequest, HTTPSend httpRequest variable |
httpLock | HTTP method used: Lock method (WebDAV protocol). | httpRequest variable |
httpMkCol | HTTP method used: MkCol method (WebDAV protocol). | httpRequest variable |
httpMove | HTTP method used: Move method (WebDAV protocol). | httpRequest variable |
httpPatch | Sends a form via the PATCH method. | HTTPSendForm httpRequest variable |
httpPost | Sends a form with a POST request. | HTTPSendForm httpRequest variable |
httpPropFind | HTTP method used: PropFind method (WebDAV protocol). | httpRequest variable |
httpPropPatch | HTTP method used: PropPatch method (WebDAV protocol). | httpRequest variable |
httpPut | Sends a form with a PUT request. | HTTPSendForm httpRequest variable |
httpResult | Used to retrieve the result of the last HTTP request | HTTPGetResult |
httpTraceDataReceived | Used to trace the data received. | httpRequest variable restRequest variable |
httpTraceDataSent | Used to trace the data sent. | httpRequest variable restRequest variable |
httpTraceHeaderReceived | Used to trace the data received corresponding to the header. | httpRequest variable restRequest variable |
httpTraceHeaderSent | Used to trace the data sent corresponding to the header. | httpRequest variable restRequest variable |
httpTraceInfo | Provides detailed information about the execution of the request (low-level cURL/OpenSSL error, step in progress, warnings, etc.). | httpRequest variable restRequest variable |
httpUnlock | HTTP method used: Unlock method (WebDAV protocol). | httpRequest variable |
httpVersion1_0 | HTTP version used by the server: HTTP version 1.0. | httpRequest variable |
httpVersion1_1 | HTTP version used by the server: HTTP version 1.1. | httpRequest variable |
httpVersion2 | HTTP version used by the server: HTTP version 2.0. If the server does not support this version, an older version is used. | httpRequest variable |
httpVersion2Only | HTTP version used by the server: Forces HTTP version 2.0: if the server does not support this version, a fatal error is displayed. | httpRequest variable |
httpVersionDefault | HTTP version used by the server: HTTP version 1.0. | httpRequest variable |