I'm trying to request manually an asp.net distant server on the port 5000 in the same network. But it doesn't work properly, I have a "Connection_Timed_OUT" error.
I already tried to open the port 5000, from the windows firewall's advanced parameters but it doesn't work too.
Edit : Below you can find my MVC Routing, but I'm not sure that where the problem is caused.
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller}/{action}/{id?}");
});