ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The IgnoreError property gets and sets the different certificate errors ignored by the HTML Display and WEBDEV Page controls.
This property allows you to run websites with non-compliant certificates.
Caution: Using this property may pose security risks and should only be used to display legitimate websites in the control.
Example
HTM_WebPage.IgnoreError = httpIgnoreExpiredCertificate + httpIgnoreInvalidCertificate
HTM_WebPage = "https://www.mysitewithaninvalidcertificate.com/login"
Syntax

Getting the different errors ignored by the HTML Display and WEBDEV Page controls Hide the details

<Result> = <Control used>.IgnoreError
<Result>: Integer constant (or combination of constants)
Certificate errors ignored:
httpIgnoreExpiredCertificateThe certificate date is ignored
httpIgnoreInvalidCertificateThe certificate is ignored.
httpIgnoreInvalidCertificateNameThe site name specified in the certificate is ignored.
httpIgnoreRedirectToHTTPThe redirection to a non-secure server is allowed.
<Control used>: Control name
Name of the HTML Display or WEBDEV Page control to be handled.

Setting the different errors ignored by the HTML Display and WEBDEV Page controls Hide the details

<Control used>.IgnoreError = <Error to ignore>
<Control used>: Control name
Name of the HTML Display or WEBDEV Page control to be handled.
<Error to ignore>: Integer constant (or combination of constants)
Certificate errors ignored:
httpIgnoreExpiredCertificateThe certificate date is ignored
httpIgnoreInvalidCertificateThe certificate is ignored.
httpIgnoreInvalidCertificateNameThe site name specified in the certificate is ignored.
httpIgnoreRedirectToHTTPThe redirection to a non-secure server is allowed.
Remarks
This property is available for HTML Display and WEBDEV Page controls. Both types of controls are based on the Chromium Embedded Framework (CEF).
Minimum version required
  • Version 28
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/01/2024

Send a report | Local help