The below throws a System.Net.WebException - Error:SendFailure (Error writing headers) over SSL but works fine for http://www.google.com
using System;
using System.Web;
using System.Net;
using System.IO;
namespace HTTPS_Headers
{
class MainClass
{
public static void Main (string[] args)
{
var request = (HttpWebRequest)WebRequest.Create ("https://www.google.co.uk/?q=mono");
using(var reader = new StreamReader(request.GetResponse().GetResponseStream())) {
Console.WriteLine (reader.ReadToEnd ());
}
Console.ReadLine();
}
}
}
I am running this on Mono 3.4.0/Lubuntu 14.04. Works fine over SSL on Windows/.NET 4.
Try running the following on your machine to import trusted root certificates:
mozroots --import --sync
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With