CertIssuer (http)

De Wiki1000

{{#images:version800-32x32.png|stock}} <source lang='delphi'>property CertIssuer:string;</source>

Lecture/Ecriture

Cette propriété indique l'émetteur du certificat SSL à utiliser en cas d'authentification mutuelle. Le certificat sera lu dans le magasin Windows. Un certificat est identifié dans le magasin par son émetteur et son numéro de série.

Exemple: <source lang='delphi'> var http : THttpClient; begin

 http := ThttpClient.Create(nil);
 http.URL := 'https://client.badssl.com/';
 http.CertSerial := '2b936ce32d82ce8b01fd9a0595ac6366aa014c82';
 http.CertIssuer := 'C=US, S=California, L=San Francisco, O=BadSSL, CN=BadSSL Client Root Certificate Authority';
 http.SSL := true;
 http.Method := hrmGet;

try

   http.Execute;
   showmessage(http.RequestInfos);
   showmessage(http.ResponseStr);
   showmessage(http.responseInfos);
 except
   showmessage(http.ErrorText);
   showmessage(e.message);
 end;

end; </source>

Voir aussi:

{{#if:Requêtes HTTP (tech)|

{{#if:Requêtes HTTP (tech)|— Requêtes HTTP (tech) |}} — Développement DSM

|

{{#if:|— [[{{{1}}}]] |}} — Développement DSM

}}