CertIssuer (http)
property CertIssuer:string;
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:
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;
Voir aussi: