I recently created a .NET Framework web API and not .NET Core due to reliance on old libraries. Also, we had the requirement to have an API gateway, with this we used ocelot but it keeps on failing during startup with the error below.
Unable to start Ocelot, errors are: When not using service discovery DownstreamHostAndPorts must be set and not empty or Ocelot cannot find your service!
The gateway works if only .NET Core web APIs are configured in the ocelot Routes, but when the .NET Framework API settings are added, it throws this error.
Is there anything specific to .NET Framework APIs that I should do to make this work?