Closed
Description
This issue has been moved from a ticket on Developer Community.
Hi,
When connecting to the server but running the code using Xamarin Forms, the server received the full certificate chain.
Using MAUI .Net 7 or 8.0, only the client certificate is sent to the server. Certificate chain is empty.
Same certificate and server are used.
In HttpWebRequest ServerCertificateValidationCallback, chain.ChainElements is empty.
Certificate received by the server is valid.
Does anyone knows how to fix this?
Here's a snippet on the client:
HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url);
req.ServerCertificateValidationCallback = ValidateServerCertificate;
req.ProtocolVersion = HttpVersion.Version11;
req.ClientCertificates = certificates;
req.Method = "GET";
req.Accept = "text/plain";
req.KeepAlive = false;
...
private static bool ValidateServerCertificate(object sender, X509Certificate? certificate, X509Chain? chain, SslPolicyErrors sslPolicyErrors)
{
}
Original Comments
Feedback Bot on 2/12/2024, 05:46 PM:
(private comment, text removed)
Original Solutions
(no solutions)