ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / HTTP functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
HTTPCertificate (Function)
In french: HTTPCertificat
Modifies the client certificate used by default to identify oneself on a server. This certificate is used by the SOAP functions and by the HTTP functions as follows.
During the call to an HTTP function or to a SOAP function, the following steps must be performed if the site asks for a client certification:
  • If a certificate is fixed, it is sought. If the certificate exists, it is used.
  • If a certificate is not fixed or if the fixed certificate was refused by the site, a window for certificate selection allows you to select the certificate to use.
Example
ListeCertif is string 
Certif is string

ListeCertif = HTTPListCertificate()
Certif = ExtractString(ExtractString(ListeCertif, 1, CR), 3, TAB)

HTTPCertificate(Certif)
IF NOT HTTPRequest("https://testapubuntu.mycompany.com") THEN
	Error(ErrorInfo(errFullDetails))
ELSE
	Info("OK")
END
Syntax
HTTPCertificate(<Certificate>)
<Certificate>: Character string
Corresponds to:
  • the name of the certificate to use. If two certificates with the same name are found in the certificate store, one of them will be chosen at random by the system.
  • the thumbprint of the certificate to use. Only the thumbprint can identify a certificate.
The certificate name (and thumbprint) can be retrieved with HTTPListCertificate.
If this parameter corresponds to an empty string (""), the default certificate is reinitialized to "<None>".
Caution: HTTPCertificatedoes not check the existence of the certificate.
Component: wd300com.dll
Minimum version required
  • Version 15
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/21/2024

Send a report | Local help