Relative Content

Tag Archive for c#asp.netasp.net-coreasp.net-web-api

ASP.NET Core absolutely refuses to host on other port

I am running a ASP.NET Core 8.0 Web Service application on arm64. On my Windows computer, I develop the app and publish it to arm64, and copy it to the target computer (a raspberry pi). Despite every configuration file demanding that the app be hosted on port 11111(which I want), when I start the application on the target computer, this happens:

Migrating dynamic API Controller Execution Code to ASP.NET Core in .NET 8

I am currently migrating an application originally built on .NET Framework 4.6.1 to .NET 8. The relevant piece of the application is an API Controller that receives a batch of API requests from the browser, and executes them one-by-one on the server side, bundling the responses into a single response.