我已经按照这个https://matt.kotsenas.com/posts/https-in-service-fabric-web-api,在service fabric中创建了一个service。证书是从KV创建的。我从KV下载了证书。我想用本地的电话机打电话。403异常
var handler = new HttpClientHandler();
var bytes = File.ReadAllBytes(certPath);
var cert = new X509Certificate2(bytes);
handler.ClientCertificates.Add(cert);
var httpRequestMessage = new HttpRequestMessage(HttpMethod.Get, apiUrl);
var httpClient = new HttpClient(handler);
var response = httpClient.SendAsync(httpRequestMessage).Result;
异常:内部异常1:HttpRequestException:发送请求时出错。
内部异常2:WebException:基础连接已关闭:无法为SSL/TLS安全通道建立信任关系。
内部异常3:AuthenticationException:根据验证过程,远程证书无效。
怎么打这个电话?
1条答案
按热度按时间nue99wik1#
根据验证过程,这些异常显示远程证书无效。检查计算机上是否正确安装了证书。
在ASP.NET Core service running on Service Fabric中启用HTTPS。
如果您有证书
PFX
文件,请将证书导入certificate store
。在Azure应用服务中添加TLS/SSL certificates
configuring TLS mutual authentication适用于Azure应用服务。
有关详细信息,请参阅MS Doc和SO Link。