Top "Self-hosting" questions

Operating independently of a hosting infrastructure

Run WCF ServiceHost with multiple contracts

Running a ServiceHost with a single contract is working fine like this: servicehost = new ServiceHost(typeof(MyService1)); servicehost.AddServiceEndpoint(typeof(…

wcf self-hosting
Remotely connect to .net core self hosted web api

I 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-hosting
Can I host my wordpress blog on github pages as a static webpage

I 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-hosting
System.ServiceModel.AddressAccessDeniedException: HTTP could not register URL http::8080

I 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-hosting
Trying to get the user-agent from request in asp.net web api self host

I'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-hosting
WCF Self Host Service - Endpoints in C#

My first few attempts at creating a self hosted service. Trying to make something up which will accept a query …

wcf console-application endpoints self-hosting
How to get gzip compression working in WCF 4.5

WCF 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-hosting
Self hosted OWIN and urlacl

I'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 owin
HTTP 413 Request Entity Too Large In Self-Hosting WCF Service

I have a self-hosting WCF service accepting messages via HTTPS. A message is being sent from a Java application, which …

c# wcf https self-hosting
ASP.NET Web API Self-Host with Windows Authentication

I 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