gpt4 book ai didi

https - ServiceStack JsonServiceClient 可以向带有自签名证书的 https 发送获取请求吗?

转载 作者:行者123 更新时间:2023-12-01 08:08:42 26 4
gpt4 key购买 nike

我调用以使用 JsonServiceClient 序列化我的请求对象。我的服务器使用 https,我创建了一个自签名证书。

当客户端尝试连接并且服务器响应证书不受信任且服务器的身份尚未验证时,似乎会抛出异常。

在浏览器中我可以忽略这条消息。如何让 JsonService 客户端使用 https 和自签名证书?

最佳答案

我认为this is a similar issue正在发生的事情。您可以在 ServerCertificateValidationCallback here 上获得更多信息和 here .下面是一个测试,它应该提供一个示例/模板来解决 JsonServiceClient 的“不可信”问题。显然,编写自己的证书验证存在一些风险。

public void Test()
{
ServicePointManager.ServerCertificateValidationCallback += new RemoteCertificateValidationCallback(ValidateRemoteCertificate);
var client = new JsonServiceClient();
var response = client.Post<string>("https://localhost/Secure/Route", new MySecureRequest());

Assert.IsNotNull(response);
}

private static bool ValidateRemoteCertificate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors policyErrors)
{
//Do something to check the certificate is valid.
return false || cert.Subject.ToUpper().Contains("Something in Cert");
}

希望这对您有所帮助。

关于https - ServiceStack JsonServiceClient 可以向带有自签名证书的 https 发送获取请求吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16616195/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com