|
|
|
|
|
- httpConfigureMode constant
HTTPConfigure (Function) In french: HTTPParamètre
Warning
From version 28, HTTPParameter is kept for backward compatibility. This function has been replaced with HTTPConfigure.
HTTPConfigure(httpConfigureMode, 1)
HTTPRequest("www.pcsoft.fr")
Syntax
HTTPConfigure(<Option to modify> , <New value>)
<Option to modify>: Integer constant Parameter to modify: | | httpConfigureDisableCache | In secure mode (HTTPS), used to manage the cache of Internet Explorer. The &new value> associated with this constant can be:- 0 (Faux by default): Re-enables Internet Explorer's cache.
- 1 (Vrai): Disables Internet Explorer cache.
| 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 (Faux by default): Re-enables Internet Explorer's HTTP cookie handling.
- 1 (Vrai): Disables HTTP cookie handling in Internet Explorer.
| httpConfigureMode | Configures the request handling mode. The <New value> associated with this constant can be:- 0 (False by default): Management of HTTP requests by the common framework for WINDEV executables, WEBDEV sites and web services.. In this mode, if a request requires HTTPS, mode 1 will automatically be used.
- 1 (True): Handling of HTTP and/or HTTPS requests by the Windows API running the process.
- 2: Management of HTTP and/or HTTPS requests by a cross-platform implementation common to all frameworks.
In this mode, a WINDEV application can exchange HTTPS data in the same way as a WINDEV Mobile application for iOS or Android. This mode can be used to replace the Windows API when it cannot encrypt HTTPS data.
|
<New value>: Integer New value of the modified parameter. Remarks httpConfigureMode constant
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|