无svc文件和无配置参数绑定的RESTful WCF服务
本文关键字:RESTful WCF 服务 绑定 参数 svc 文件 配置 | 更新日期: 2023-09-27 17:50:56
我已经设置了没有svc文件和没有配置的服务,但我需要与json绑定参数,我尝试使用邮差(谷歌扩展)进入,我总是在我的对象类中获得最小日期。不可能吗?
例如:
{"date": {"lastdate": "2012-02-02"}}
这个json将绑定到方法类。
头
POST /DMatchService/Team HTTP/1.1
Host: localhost:10017
Content-Type: application/json
Accept: application/json
Cache-Control: no-cache
{ "Team" : { "lastdate" : "1335205592410"}}
服务类 [OperationContract]
[WebInvoke(UriTemplate = "GetTeam", Method = "POST")]
public string GetTeam(Team team)
{
DatasourceMatchServices svc = new DatasourceMatchServices();
return date.lastdate.ToString();
}
类[DataContract]
public class Team
{
[DataMember]
public DateTime lastdate { get; set; }
}
Global.cs
protected void Application_Start(object sender, EventArgs e)
{
RouteTable.Routes.Add(new ServiceRoute("DMatchService", new WebServiceHostFactory(), typeof(DMatchService)));
}
您可以从ajax
调用endpoint
将您的数据post
作为json
。我认为在这种情况下您不需要DataContract attributes
。