gpt4 book ai didi

c# - System.Net.Http.HttpClient.PostAsync 阻塞并且永不返回

转载 作者:太空宇宙 更新时间:2023-11-03 14:39:09 26 4
gpt4 key购买 nike

我有一个 .NET 框架 Windows 窗体应用程序,其窗体具有以下代码:

using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace test
{

public partial class Main : Form
{

public int exitCode = 1;
private Options opts;
CancellationTokenSource cancellationSource = new CancellationTokenSource();


public Main(Options opts)
{
InitializeComponent();
this.opts = opts;
}

private void btnCancel_Click(object sender, EventArgs e)
{
exitCode = 1;
cancellationSource.Cancel();
Close();
}

async Task doUpload()
{
using (var content = new MultipartFormDataContent())
{
List<FileStream> streams = new List<FileStream>();
try
{
foreach (string fPath in opts.InputFiles)
{
FileStream stream = new FileStream(fPath, FileMode.Open, FileAccess.Read);
streams.Add(stream);
content.Add(new StreamContent(stream), fPath);
}
var progressContent = new ProgressableStreamContent(
content,
4096,
(sent, total) =>
{
double percent = 100 * sent / total;
progressBar.Value = (int)percent;
});

using (var client = new HttpClient())
{
using (var response = await client.PostAsync(opts.URL, progressContent, cancellationSource.Token))
{
if (response.IsSuccessStatusCode)
{
exitCode = 0;
}
else
{
MessageBox.Show(
response.Content.ToString(),
"Error " + response.StatusCode,
MessageBoxButtons.OK, MessageBoxIcon.Error
);
}
Close();
}
}
}
finally
{
foreach (FileStream stream in streams)
{
stream.Close();
}
}
}

}

private void Main_Load(object sender, EventArgs e)
{
}

private void Main_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = !cancellationSource.IsCancellationRequested;
}

private void Main_Shown(object sender, EventArgs e)
{
doUpload();
}
}
}

ProgressableStreamContent 与此处给出的相同:C#: HttpClient, File upload progress when uploading multiple file as MultipartFormDataContent

问题是永远不会返回响应。换句话说:WAITING postAsync 永远不会完成。此外,永远不会回调进度回调。即使我尝试使用包含不存在域的 POST URL,也没有任何反应。我想这是一个僵局,但我不明白怎么办?异步任务的结果永远不会在任何地方使用,也不会等待。

它不同于An async/await example that causes a deadlock因为没有使用 .Result 并且从未等待该方法,而且调用 ConfigureAwait(false) 似乎没有效果。

更新:我已经为这个问题创建了一个新的 github 存储库,所以任何人都可以测试它:

https://github.com/nagylzs/csharp_http_post_example

更新:终于成功了。不需要 ConfigureAwait。所有的UI更新操作都必须放在Invoke里面。我已将测试 repo 更新为工作版本。还添加了 TLSv1.2 支持(默认情况下禁用)。

最佳答案

您发布的代码中的

PostAsync 不会阻塞(但它实际上永远不会返回!)。它抛出异常:

System.InvalidOperationException: Cross-thread operation not valid: Control 'progressBar' accessed from a thread other than the thread it was created on.

这就是断点对您不起作用的原因。正确的解决方案是:

var progressContent = new ProgressableStreamContent(
content,
4096,
(sent, total) =>
{
Invoke((Action) (() => {
double percent = 100 * sent / total;
progressBar.Value = (int) percent;
}));
});

(添加 InvokeBeginInvoke 到回调)

HTTP 客户端的回调在后台线程上调用,如果您希望它们访问您的 UI 控件,您必须将它们放入窗口的偶数队列中。

.ConfigureAwait(false) 与此问题无关,您不应在 UI 上下文中使用它(恰恰相反:您希望将延续到 UI 线程,所以你不应该使用它)。

关于c# - System.Net.Http.HttpClient.PostAsync 阻塞并且永不返回,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58364142/

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