In all the host programs of WCF services we need to write the something like: using(ServiceHost host = new ServiceHost(typeof(<ServiceType>))) { host.Open(); Console.WriteLine(“Service Started…”); Console.Read(); } The class System.ServiceModel.ServiceHost provides the functionality to host Windows Communication Foundation (WCF) services.This is a derived class of ServiceHostBase and is used to [...]

