我有一个WCF RESTful服务,它接受多个查询参数。以下是服务方法。
[WebInvoke(Method = "GET", ResponseFormat = WebMessageFormat.Xml, UriTemplate = "test1?p1={p1}&p2={p2}")]
[OperationContract]
string test1(string p1, string p2);
我有以下问题。
Annu Mittal
答案 0 :(得分:0)
嘛!使用 GET 和 POST 方法提供相同的服务是可行的。
Write a webservice method with both URI and DataContract class parameters
就输入类型而言!我想如果您能理解第一部分,那么我们就有机会接受 XML , JSON 和流。