I have a webservice defined here:
/app/AutocompleteManager.asmx
[WebMethod]
public string AutocompleteComposers()
{
return "hey, what's up";
}
I want to call it using the GET method with extra parameters.
If I just go /app/AutocompleteManager.asmx?q=something
, it won't work because I don't have the action specified.
If I go /app/AutocompleteManager.asmx/AutocompleteComposers?q=something
it breaks.
Any idea?