Google Code Prettify

ASP.NET Core 8 出現下列錯誤, The SSL connection could not be established, see inner exception.

在 ASP.NET Core 8 中遇到 "The SSL connection could not be established, see inner exception" 錯誤通常是因為 HTTPS 設置問題或 SSL 憑證無法驗證。以下是一些解決此問題的步驟:


1. 檢查本地開發憑證
確認開發憑證已安裝
在本地開發環境中,您需要確保已安裝並信任 ASP.NET Core 開發憑證。可以使用以下命令檢查並安裝憑證:

bash
dotnet dev-certs https --check
dotnet dev-certs https --trust



2. 忽略 SSL 憑證驗證錯誤
在開發環境中,您可以選擇忽略 SSL 憑證驗證錯誤,但這不建議在生產環境中使用。您可以在配置 HttpClient 時忽略 SSL 憑證錯誤:

csharp
using System.Net.Http;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;

var handler = new HttpClientHandler
{
    ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => { return true; }
};

var client = new HttpClient(handler);



3. 檢查 SSL 憑證
確保您正在使用的 SSL 憑證是有效的,並且已正確安裝。如果是自簽名憑證,請確保它已添加到受信任的根憑證颁发机构。


4. 配置 Kestrel
如果您使用 Kestrel 作為 Web 伺服器,請確保正確配置了 HTTPS:

csharp
public class Program
{
    public static void Main(string[] args)
    {
        CreateHostBuilder(args).Build().Run();
    }

    public static IHostBuilder CreateHostBuilder(string[] args) =>
        Host.CreateDefaultBuilder(args)
            .ConfigureWebHostDefaults(webBuilder =>
            {
                webBuilder.UseStartup();
            })
            .ConfigureKestrel(options =>
            {
                options.Listen(IPAddress.Any, 5001, listenOptions =>
                {
                    listenOptions.UseHttps("path/to/your/certificate.pfx", "yourpassword");
                });
            });
}



5. 檢查網絡設置
如果您在企業網絡或使用 VPN,有時會遇到 SSL/TLS 問題。請檢查您的網絡設置並嘗試在不同的網絡環境中運行應用程式。


6. 查看內部異常信息
檢查內部異常的詳細信息以獲取更多線索:

csharp
try
{
    var client = new HttpClient();
    var response = await client.GetAsync("https://yourapiendpoint");
    response.EnsureSuccessStatusCode();
}
catch (HttpRequestException ex)
{
    Console.WriteLine($"Request error: {ex.Message}");
    if (ex.InnerException != null)
    {
        Console.WriteLine($"Inner exception: {ex.InnerException.Message}");
    }
}



7. 設置 SSL 協議版本
確保您的應用程式配置了正確的 SSL/TLS 協議版本:

csharp
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;



總結
以上步驟應該能幫助您解決 SSL 連接建立失敗的問題。根據實際情況調整配置,特別是在開發和生產環境之間的 SSL 設置。如果問題依然存在,請提供更多詳細信息以便進一步診斷。