|
|
|
|
HTTPListCertificate (Function) In french: HTTPListeCertificat Lists the client certificates found on the computer to authenticate on a server. A specific certificate can be used via HTTPCertificate. Use example: This function can be used for example to avoid displaying the standard window for certificate selection if the site asks the client to authenticate. Remark: CertificateList is used to list the certificates available in the store of Windows certificates.
CertifList is string CertifList = HTTPListCertificate() FOR EACH STRING Certif OF CertifList SEPARATED BY RC ListAdd(LIST_List1, ExtractString(Certif, 1, TAB) + ... gStoredValue(ExtractString(Certif, 3, TAB))) END
Syntax
<Result> = HTTPListCertificate()
<Result>: Character string List of certificates found on the current computer. The different certificates are separated by a Carriage Return (CR). This list has the following format:
<Certificate name> + TAB + <Supplier> + TAB + <Digital print> + CR + ...
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|