Operating independently of a hosting infrastructure
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 katanaI 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-hostingI am writing an application that exposes a service via WCF. The service is self-hosted (console app) and needs to …
wcf self-hostingI'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 owinI'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-hostingI 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-hostingI have this configuration in my app.config: </binding> </basicHttpBinding> </bindings> <behaviors> &…
c# .net wcf configuration self-hostingI 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-hostingI'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-hostingI 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