我正在从 WinForms 应用程序发送 HTTP PUT 请求,并且我想向页面发送缓慢的 PUT 数据涓涓细流,当 PUT 数据到达时,该页面将把消息写入数据库。我正在使用 WebRequest 并将 SendChunked 设置为 true,但它似乎只是在将 8KB 数据写入请求流之后才发送一个块。
更糟糕的是,网页似乎在大约 42KB 后停止接收,并且发送方在大约 77KB 后抛出 WebException 并显示消息“请求中止:请求已取消”。
我实际上在每条消息中发送了非常少量的数据,所以如果我能说服 WebRequest 只发送包含每条消息的一小块,我会没事的。
到目前为止,这是我正在尝试的内容:
var request =
(HttpWebRequest)WebRequest.Create("http://localhost/test.php");
request.Method = "PUT";
request.Timeout = 300 * 1000;
request.SendChunked = true;
request.AllowWriteStreamBuffering = false;
request.ContentType = "application/octet-stream";
using (var post = new StreamWriter(request.GetRequestStream()))
{
post.AutoFlush = true;
for (int i = 0; i < 100; i++)
{
if (i > 0)
{
// force flushing previous chunk
post.Write(new String(' ', 1048));
Thread.Sleep(2 * 1000);
}
Console.Out.WriteLine("Requesting {0} at {1}.", i, DateTime.Now);
string chunk = i.ToString();
post.WriteLine(i);
}
}
我在每条消息之后写了 1KB 的空白,以尝试强制 WebRequest 更快地发送一个块。