WCF service with multiple service contracts with duplicate method names in single wsdl
问题 Continuing this and this questions. I have two service contract with the same methods: [ServiceContract] public interface IServices1 { [OperationContract] string GetData(int value); } [ServiceContract] public interface IServices2 { [OperationContract] string GetData(int value); } And service: public class Service : IServices1, IServices2 { string IServices1.GetData(int value) { return string.Format("You entered: {0}", value); } string IServices2.GetData(int value) { return string.Format("You