1
http://localhost/myProjects/WebServices/Retriever.svc
一個SVC Web服務假設Retriever.svc.cs有一個方法
[WebGet]
[OperationContract]
public string[] CoolMethod(string prefixText, int count)
{
.....
return some string[];
}
我怎麼能在我的瀏覽器形成一個URL,看看有什麼輸出它會是什麼?
我可以做沿着
http://localhost/myProjects/WebServices/Retriever.svc/CoolMethod?arg1?arg2
我同意你答案的最後部分:「應該在這裏供他人蔘考」。這是這個網站的重點。 – euther
它應該是.../Retriever.svc/CoolMethod?prefixText = box&count = 5(您需要URI中的方法名稱,參數的分隔符應該是'&'而不是'#' – carlosfigueira
@carlosfiguera - 固定, 謝謝! – Matt