Paypal开发中遇到请求被中止: 未能创建 SSL/TLS 安全通道及解决方案

时间:2022-06-23 19:44:18

最近在基于ASP.NET上开发了Paypal支付平台,在ASP.NET开发的过程中没有遇到这个问题,但是引用到MVC开发模式中的时候就出现了“未能创建 SSL/TLS 安全通道及解决方案”的问题;

         /// <summary>
/// 发送请求
/// </summary>
/// <param name="nvp"></param>
/// <returns></returns>
private static NVPCodec SendExpressCheckoutCommand(NVPCodec nvp)
{
NVPCallerServices service = InitializeServices();
string response = service.Call(nvp.Encode()); NVPCodec responsenvp = new NVPCodec();
responsenvp.Decode(response);
return responsenvp; }

代码中当编译到 string response = service.Call(nvp.Encode());时就会报错,然后查阅了相关资料,当Paypal创建不安全因素的链接时候服务器就会阻止;

解决方案:在编译的代码前面加上

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;这句话就可以了。