HttpClient PostAsJsonAsync behaving different in .NET Core and Classic .NET

前端 未结 1 1856
情歌与酒
情歌与酒 2020-12-16 02:53

I am hosting a Classic .NET WebAPI endpoint in IIS that accepts POST requests to upload a document.

I have created two console applications that will connect to the

相关标签:
1条回答
  • 2020-12-16 03:31

    The underlying problem appears to be that the Classic .NET WebAPI fails to process chunked requests in it current newest version (v5.2.3). I'm going to assume that's a bug and as a work-around downgrade to v5.0 for the time being.

    Special thanks to @Developer for helpful input.

    -S

    0 讨论(0)
提交回复
热议问题