首頁 >後端開發 >C#.Net教程 >分析C#httpwebrequest存取HTTPS錯誤處理的方法

分析C#httpwebrequest存取HTTPS錯誤處理的方法

黄舟
黄舟原創
2017-03-24 11:40:002849瀏覽

下面小編就為大家帶來一篇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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn