下面小編就為大家帶來一篇C# httpwebrequest訪問HTTPS錯誤處理方法。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
C# httpwebrequest訪問HTTPS連結時遇到這個錯誤,但是如果我開抓包工具,比如filddler2,則POST返回正常
錯誤提示的Message為:
基礎連線已經關閉: 傳送時發生錯誤。
InnerException為:
從傳輸流收到意外的 EOF 或 0 個位元組。
試了網上的N種方法,以下是本次的解決方案:
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3;
把網上找到的解決方案列一下,沒準就能解決了你的問題
以下是網路上找到的解決方案:
1. request.ProtocolVersion = HttpVersion.Version10;
2. ServicePointManager .ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
3.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
4.換個#User##App#App.新增以下內容:
<system.net> <settings> <httpWebRequest useUnsafeHeaderParsing="true"/> </settings> </system.net>
以上是分析C#httpwebrequest存取HTTPS錯誤處理的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!