Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mono https webrequest fails with "The authentication or decryption has failed"

I'm making a simple REST client to use in my C# applications. In .net on Windows It works great with http:// and https:// connections. In mono 2.6.7 (Also tested with 2.8 with the same results) on Ubuntu 10.10 only http:// works. https:// connections throw up this exception on the request.GetResponse() method:

Unhandled Exception: System.Net.WebException: Error getting response stream (Write: The authentication or decryption has failed.): SendFailure ---> System.IO.IOException: The authentication or decryption has failed. ---> Mono.Security.Protocol.Tls.TlsException: Invalid certificate received from server. Error code: 0xffffffff800b010a   at Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate.validateCertificates (Mono.Security.X509.X509CertificateCollection certificates) [0x00000] in <filename unknown>:0    at Mono.Security.Protocol.Tls.Handshake.Client.TlsServerCertificate.ProcessAsTls1 () [0x00000] in <filename unknown>:0    at Mono.Security.Protocol.Tls.Handshake.HandshakeMessage.Process () [0x00000] in <filename unknown>:0    at (wrapper remoting-invoke-with-check) Mono.Security.Protocol.Tls.Handshake.HandshakeMessage:Process ()   at Mono.Security.Protocol.Tls.ClientRecordProtocol.ProcessHandshakeMessage (Mono.Security.Protocol.Tls.TlsStream handMsg) [0x00000] in <filename unknown>:0    at Mono.Security.Protocol.Tls.RecordProtocol.InternalReceiveRecordCallback (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0    --- End of inner exception stack trace ---   at Mono.Security.Protocol.Tls.SslStreamBase.AsyncHandshakeCallback (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0    --- End of inner exception stack trace ---   at System.Net.HttpWebRequest.EndGetResponse (IAsyncResult asyncResult) [0x00000] in <filename unknown>:0    at System.Net.HttpWebRequest.GetResponse () [0x00000] in <filename unknown>:0  

I haven't been able to find any way to fix this. Anyone have any idea why this is happening and how to fix it?

Again, this only fails in Mono, .Net doesn't seem to have any problem establishing a connection.

here's the calling code:

public JToken DoRequest(string path, params string[] parameters) {     if(!path.StartsWith("/")) {         path = "/" + path;     }     string fullUrl = url + path + ToQueryString(parameters);      if(DebugUrls) Console.WriteLine("Requesting: {0}", fullUrl);      WebRequest request = HttpWebRequest.CreateDefault(new Uri(fullUrl));     using(WebResponse response = request.GetResponse())     using(Stream responseStream = response.GetResponseStream()) {         return ReadResponse(responseStream);     } } 
like image 260
Joel Avatar asked Feb 07 '11 21:02

Joel


1 Answers

I had the same problem with Unity (which also uses mono) and this post helped me to solve it.

Just add the following line before making your request:

ServicePointManager.ServerCertificateValidationCallback = MyRemoteCertificateValidationCallback; 

And this method:

public bool MyRemoteCertificateValidationCallback(System.Object sender,     X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) {     bool isOk = true;     // If there are errors in the certificate chain,     // look at each error to determine the cause.     if (sslPolicyErrors != SslPolicyErrors.None) {         for (int i=0; i<chain.ChainStatus.Length; i++) {             if (chain.ChainStatus[i].Status == X509ChainStatusFlags.RevocationStatusUnknown) {                 continue;             }             chain.ChainPolicy.RevocationFlag = X509RevocationFlag.EntireChain;             chain.ChainPolicy.RevocationMode = X509RevocationMode.Online;             chain.ChainPolicy.UrlRetrievalTimeout = new TimeSpan (0, 1, 0);             chain.ChainPolicy.VerificationFlags = X509VerificationFlags.AllFlags;             bool chainIsValid = chain.Build ((X509Certificate2)certificate);             if (!chainIsValid) {                 isOk = false;                 break;             }         }     }     return isOk; } 
like image 69
Ludovic Feltz Avatar answered Sep 17 '22 11:09

Ludovic Feltz