I now have a complete loss ...
I have a .NET Core web application and everything works in the workplace. There are several WebAPI endpoints, again everything works as intended with GETand returns JSON correctly.
When I publish to IIS, one and only one of these endpoints stop working and throw (failed) net:ERR_CONNECTION_RESET(in Chrome, other browsers throw their own errors).
What is so special is that all other Web API calls work, all in the same environment, and invoke the same database using the same context and EF data service.
I can't figure out how to get detailed logs from Kestrel in some other logging services, either Windows Event Viewer, text file, email, or something else! I have not used most of the middleware for logging, with the intention of linking this as we approach production.
What is the best way to try and fix this issue in IIS 8 on Windows 2012 R2 using the Kestrel.NET core server?
source
share