I\'ve self-hosted Web API using OWIN (inside a windows service). From what I understand, this is enough to make HTTP requests come to the windows service. I\'m able to hit t
What worked for me in the end was this value:
StartOptions options = new StartOptions();
options.Urls.Add("http://*:9095");
using (WebApp.Start(options))
{
...
}
Be aware that after adding this, you can only run the application in Visual Studio using Admin mode and the release version of the app needs also to be run in Admin mode.