Is it possible to change a parameter name of an asmx web service without breaking clients? For example, consider a legacy service which has a web method like so:
[WebMethod]
public string HelloWorld(string NAME)
{
return "Hello World and " + NAME;
}
The legacy service web method has the parameter NAME, but I'd like to change this to 'Name' to follow coding guide-lines. Will this break existing clients?