当我向以下各方发出请求时,我已经犯了411个错误:
接口:
[OperationContract]
[WebInvoke(Method = "POST",
ResponseFormat = WebMessageFormat.Json,
BodyStyle = WebMessageBodyStyle.Wrapped,
UriTemplate = "IncSMS")]
string IncSMS(int ID);
方法:
public void IncSMS(int ID)
{
var business =
(from p in _db.Businesses
where p.BusinessID == ID
select p).FirstOrDefault();
business.SMSHits += 1;
_db.SaveChanges();
}
谁能看到我为什么会犯错误? 所有的得力方法工作,我只得获得POST或PUT服务!
任何想法?
Cheers,
Mike。