Configure WCF

For the following sections we will utilize following service definition and contract: [ServiceContract(Name=”myservice”, Namespace=”config.myservice”)] public class IMyServiceContract { [OperationContract] void MyMethod(); } class MyService : IMyServiceContract { public void MyMethod() { //omitted } } Administrative Configuration To administratively configure your endpoints to use in WCF you simply add a system.serviceModel Read more…