assume this is a ServiceContract
[ServiceContract]
public interface MyService
{
[OperationContract]
int Sum(int x, int y);
[OperationContract]
int Sum(double x, double y);
}
why method overloading is not allowed in WCF? The hosting program will throw an (InvalidOperationException) while hosting