Hi all,
does anyone knows if I can overload webmethod in C#, I would like to do this:
[WebMethod]
public string GetParcelByAddress(string streetName, string streetNumber)
{
return;
}

[WebMethod]
public string GetParcelByAddress(string streetName)
{
return;
}

but, I am getting error messge:

Both System.String GetParcelByAddress(System.String) and System.String GetParcelByAddress(System.String, System.String) use the message name 'GetParcelByAddress'. Use the MessageName property of the WebMethod custom attribute to specify unique message names for the methods.