I have a ASP.NET Core 2.1 WebAPI project hosted in Azure as a Windows App Service in Premium Tier.
This API has an endpoint that accepts a POST request with a JSON payload (Content-Tye=application/json).
When I call this API(from Postman or from C# console app using HttpClient) and pass a JSON payload of 100KB then it gives error "an existing connection was forcibly closed by the remote host". But when I call this same API with a smaller JSON payload like 20KB then it succeeds.
So is there any settings to increase request length in Azure WebApp?