既然是REST风格了,就应该使用Url的方式来处理资源,如果需要传递参数就使用Service/Action/id这种形式来传,这里id是参数名了,如:
[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "{id}")]
void Update(Atom10ItemFormatter<SyndicationItem> item, int id);
如果你非得使用?id=1这种形式,简单点来说,把这个方法变通成:
[WebInvoke(Method = "PUT", RequestFormat = WebMessageFormat.Xml, UriTemplate = "?id={id}")]
void Update(Atom10ItemFormatter<SyndicationItem> item, int id);
这个方法貌似有点锉,只是我拍脑袋想出来的,登不得大雅之堂,呵呵。
第三种方法,使用Request["id"]来获取Url中的参数也不是不可以啊,不过既然你型REST,就型的像点,使用第一种方法吧。
最后,我觉得WCF和MVC的UrlRouting结合后更爽了,那个ModelBinder没得说,尽早转过去吧。
Post的时候,传个JsonArrary就可以了。
Get的时候,可能需要自己构造字符串了。当然有时候需要加时间戳,因为缓存问题 。
具体可以看我的WCF Rest 系列.http://www.cnblogs.com/LoveJenny/tag/wcf/