您将如何形成URL来测试SVC的输出
本文关键字:测试 SVC 输出 URL 何形成 | 更新日期: 2023-09-27 18:00:09
我在有一个SVC web服务
http://localhost/myProjects/WebServices/Retriever.svc
假设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
原来你可以做
http://localhost/myProjects/WebServices/Retriever.svc/CoolMethod?prefixText=box&计数=5
本应在询问之前尝试一下,但将其留在此处供其他人参考。