A solicitação foi interrompida: Não foi possível criar o canal seguro SSL / TLS. System.Net.WebException

Estou usando o plugin PayPalStandard do NopCommerce. Quando eu fiz o pedido e efetuei o pagamento com o plugin paypalstandard após o pagamento bem-sucedido no paypal, ele será redirecionado para o site dos comerciantes. Naquele momento, dá erro:

A solicitação foi interrompida: não foi possível criar o canal seguro SSL / TLS.

Também estou usando a conta Sandbox do Paypal para testes.

Lança erro nesta linha:

var sw = new StreamWriter(req.GetRequestStream()

Aqui está o código abaixo:

var req = (HttpWebRequest)WebRequest.Create(GetPaypalUrl());
        req.Method = "POST";
        req.ContentType = "application/x-www-form-urlencoded";
        req.ProtocolVersion = HttpVersion.Version10;

        string formContent = string.Format("cmd=_notify-synch&at={0}&tx={1}", _paypalStandardPaymentSettings.PdtToken, tx);
        req.ContentLength = formContent.Length;

        using (var sw = new StreamWriter(req.GetRequestStream(), Encoding.ASCII))
            sw.Write(formContent);

questionAnswers(2)

yourAnswerToTheQuestion