WCF Multiple Apps using NetNamedPipe
I am trying to run multiple WCF Service hosting apps on the same Machine. I want to run multiple Applications - not multiple services in one application. var host = new ServiceHost(typeof(MyClass1), new Uri[] { new Uri("net.pipe://localhost") }); host.AddServiceEndpoint(typeof(ISomeInterface), new NetNamedPipeBinding(), "FOO"); host.Open(); I change "FOO" for every app, but still can not start multiple Services. Guess its pretty simple, but im stuck :( Regards Approaching it like this will do what you want, I believe: string relativeUriPart = GetUniquePartFromConfigOfThisApplicationInstance();