I have a SVC web service located at
http://localhost/myProjects/WebServices/Retriever.svc
Let's say Retriever.svc.cs has a method
[WebGet]
[OperationContract]
public string[] CoolMethod(string prefixText, int count)
{
.....
return some string[];
}
How could I form a URL in my browser to see what the output of it would be?
Can I do something along the lines of
http://localhost/myProjects/WebServices/Retriever.svc/CoolMethod?arg1?arg2