gpt4 book ai didi

C# HttpClient.SendAsync 在测试某些 URL 时抛出 "An error occurred while sending the request"异常

转载 作者:IT王子 更新时间:2023-10-29 04:27:47 25 4
gpt4 key购买 nike

我正在开发一个 C# 控制台应用程序来测试 URL 是否有效或有效。它适用于大多数 URL,并且可以从目标网站获得带有 HTTP 状态代码的响应。但是在测试其他一些 URL 时,应用程序会在运行 HttpClient.SendAsync 方法时抛出“发送请求时发生错误”异常。所以我无法获得任何响应或 HTTP 状态代码,即使这个 URL 实际上在浏览器中有效。我很想知道如何处理这个案子。如果 URL 不起作用或服务器拒绝我的请求,它至少应该给我相应的 HTTP 状态代码。

以下是我的测试应用程序的简化代码:

using System;
using System.Net.Http;
using System.Threading.Tasks;

namespace TestUrl
{
class Program
{
static void Main(string[] args)
{
// var urlTester = new UrlTester("http://www.sitename.com/wordpress"); // works well and get 404
// var urlTester = new UrlTester("http://www.fc.edu/"); // Throw exception and the URL doesn't work
var urlTester = new UrlTester("http://www.ntu.edu.tw/english/"); // Throw exception and the URL works actually

Console.WriteLine("Test is started");

Task.WhenAll(urlTester.RunTestAsync());

Console.WriteLine("Test is stoped");
Console.ReadKey();
}


public class UrlTester
{
private HttpClient _httpClient;
private string _url;

public UrlTester(string url)
{
_httpClient = new HttpClient();
_url = url;
}

public async Task RunTestAsync()
{
var httpRequestMsg = new HttpRequestMessage(HttpMethod.Head, _url);

try
{
using (var response = await _httpClient.SendAsync(httpRequestMsg, HttpCompletionOption.ResponseHeadersRead))
{
Console.WriteLine("Response: {0}", response.StatusCode);
}
}
catch (Exception e)
{
}
}
}

}
}

最佳答案

如果您查看 InnerException,您将看到:

"The remote name could not be resolved: 'www.fc.edu'"

这个 URL 在我的浏览器上也不起作用。

为了获得 HTTP 响应,您需要客户端能够与服务器通信(即使是为了获得 error 404 )并且在您的情况下发生了错误 at the DNS level .

对于这种情况,某些浏览器具有自动完成功能,如果未找到特定 URL,浏览器将使用不同的后缀/前缀重试,例如:

try "x"
if didn't work, try "www." + x
if this didn't work try "www." + x + ".com"
if this didn't work try "www." + x + ".net"
if this didn't work try "www." + x + "." + currentRegionSuffix.

但请注意,您可以更改代码:

catch (Exception e)
{

}

收件人:

catch (HttpRequestException e)
{
Console.WriteLine(e.InnerException.Message);
}

您将能够看到导致错误的原因。

此外,除非抛出者已抛出通用 Exception,否则您永远不应该捕获通用 Exception ,甚至比,永远不要捕获异常并且不做任何事情,至少记录它。

请注意,因为您只等待您可以使用的一项任务:

urlTester.RunTestAsync().Wait();

代替:

Task.WhenAll(urlTester.RunTestAsync());

Task.WhenAll 在给定的 Task 完成时创建一个新的 Task。在您的情况下,您需要 Task.WaitAllTask.WhenAll(...).Wait( )

关于C# HttpClient.SendAsync 在测试某些 URL 时抛出 "An error occurred while sending the request"异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32932064/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com