Operating independently of a hosting infrastructure
Running a ServiceHost with a single contract is working fine like this: servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(…
wcf self-hostingI have a simple .net core web api with one action: [Route("[action]")] public class APIController : Controller { // GET api/values […
c# asp.net-web-api .net-core self-hostingI would like to make my WordPress blog installed on Localhost to push into GitHub and run that on GitHub …
wordpress github web-hosting github-pages self-hostingI have created my first self-hosted WCF service. I hosted it in a C# console app but it throws an …
c# asp.net wcf wcf-binding self-hostingI'm trying to get the user-agent in a web api self host and I'm either doing it wrong, or the …
asp.net-web-api self-hostingMy first few attempts at creating a self hosted service. Trying to make something up which will accept a query …
wcf console-application endpoints self-hostingWCF 4.5 supports GZIP without third party libraries or handwritten extensions. I got it working via TCP Binding, but cannot find …
c# .net wcf self-hostingI've created a self hosted Nancy/SignalR application self-hosted in OWIN using Microsoft.Owin.Host.HttpListener and Microsoft.Owin.Hosting …
signalr acl nancy self-hosting owinI have a self-hosting WCF service accepting messages via HTTPS. A message is being sent from a Java application, which …
c# wcf https self-hostingI am trying to use the ASP.NET Web API Self-Host option with Windows authentication so I can determine the …
asp.net asp.net-mvc windows-authentication asp.net-web-api self-hosting