Top "Self-hosting" questions

Operating independently of a hosting infrastructure

Owin self-host - Failed to listen on prefix 'http://localhost:12345/' because it conflicts with an existing registration on the machine

I'm trying to self-host a simple WebAPI: public class AccountViewApplication { protected IDisposable WebApplication; public void Start() { WebApplication = WebApp.Start<…

http owin self-hosting katana
Register certificate to SSL port

I have a windows service (running as LocalSystem) that is self-hosting an OWIN service (SignalR) and needs to be accessed …

c# .net .net-4.5 owin self-hosting
Specify a Singleton service in a WCF self hosted service

I am writing an application that exposes a service via WCF. The service is self-hosted (console app) and needs to …

wcf self-hosting
Default route for root path using asp.net attribute routing

I'm using attribute routing from ASP.NET 5 RC, included in the Visual Studio 2013 RC release. I'd like for the root …

asp.net-mvc asp.net-mvc-routing self-hosting visual-studio-2013 owin
SignalR self hosted windows service, listening for messages

I'm attempting to build a windows service that's self-hosting SignalR. I have read through tutorials such as SignalR Self-Host on …

c# windows-services signalr self-hosting
SignalR.Owin vs. SignalR.SelfHost

I want to use SignalR selfhosted with Owin. What are the differences between these two packages: Microsoft ASP.NET SignalR …

c# asp.net asp.net-web-api signalr self-hosting
Reading WCF behavior elements from config file programmticlally when exposing self-hosted service

I have this configuration in my app.config: </binding> </basicHttpBinding> </bindings> <behaviors> &…

c# .net wcf configuration self-hosting
WebApi with OWIN SelfHost and Windows Authentication

I have a console application SERVER that hosts WebApi controllers using OWIN self-hosting, and runs under a custom account named "…

asp.net-web-api owin windows-authentication self-hosting
Token authentication and authorisation for a self-hosted ASP.NET Web API 2 REST service

I'm using VS2013 and Web API 2 to create a self-hosted (using OWIN), RESTful service over SSL using token authentication. Although …

asp.net authentication authorization asp.net-web-api2 self-hosting
SelfHosted AspNet WebAPI With Controller Classes In Different Project

I have created a SelfHosted AspNet WebAPI with Visual Studio 2012 (.NET Framework 4.5). I enabled SSL for the WebAPI. It works …

asp.net-web-api multiple-projects self-hosting