If I were to change the case of a method name and parameters, would this adversely affect clients making use of a asmx or WCF web service?
public string getSTRING(int INPUT)
{
return INPUT.ToString();
}
to....
public string GetString(int input)
{
return input.ToString();
}
Would clients needed to regenerate their proxy objects to make use of the changed methods?