RESTful Web Services with ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T11:28:05Z http://stackoverflow.com/feeds/question/220845 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc 2 RESTful Web Services with ASP.NET MVC Shiju 2008-10-21T05:20:00Z 2009-08-12T10:48:42Z <p>Do you think ASP.NET MVC is able to develop RESTful web services and which approach you would use for it?</p> http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc/220851#220851 0 Answer by calebjenkins for RESTful Web Services with ASP.NET MVC calebjenkins 2008-10-21T05:22:47Z 2008-10-21T05:22:47Z <p>I would seriously look at ADO.NET Dataservices. (formaly code named Astoria) There's some really nice tooling for Restful services in there!</p> <p><a href="http://msdn.microsoft.com/en-us/data/bb931106.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/data/bb931106.aspx</a></p> http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc/220862#220862 1 Answer by SaaS Developer for RESTful Web Services with ASP.NET MVC SaaS Developer 2008-10-21T05:31:41Z 2008-10-21T05:31:41Z <p>Generally, I would say yes it is possible for ASP.Net MVC to develop RESTful web services. However, many times the consumers of the data are unique enough where this may not be the best approach.</p> <p>For larger application services or more complex services, I would recommend developing your MVC Controllers in a RESTful manner to be consumed by the views as MVC is designed. I would then think about ADO.Net Data Services or WCF for large scale data services.</p> http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc/220928#220928 3 Answer by Pradeep Kumar Mishra for RESTful Web Services with ASP.NET MVC Pradeep Kumar Mishra 2008-10-21T06:08:12Z 2008-10-21T06:08:12Z <p>see this <a href="http://msmvps.com/blogs/omar/archive/2008/10/03/create-rest-api-using-asp-net-mvc-that-speaks-both-json-and-plain-xml.aspx" rel="nofollow">http://msmvps.com/blogs/omar/archive/2008/10/03/create-rest-api-using-asp-net-mvc-that-speaks-both-json-and-plain-xml.aspx</a></p> http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc/225657#225657 0 Answer by CraftyFella for RESTful Web Services with ASP.NET MVC CraftyFella 2008-10-22T13:08:32Z 2008-10-22T13:20:40Z <p>Peter,</p> <p>In response to calebjenkins, ADO.Net data services is really nice if you want to create a restful version of your database. </p> <p>If you want more control over your restful webservice then i would use WCF web services. Or if your datastore isn't a database, then ADO.NET data service isn't really the right solution. Here is a really nice <a href="http://www.developer.com/net/article.php/10916_3695436_1" rel="nofollow">article</a> which got me started.</p> http://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc/271998#271998 1 Answer by Piers Lawson for RESTful Web Services with ASP.NET MVC Piers Lawson 2008-11-07T13:01:29Z 2008-11-07T13:01:29Z <p>I have written a whole series of posts on developing a RESTful <a href="http://shouldersofgiants.co.uk/blog/" rel="nofollow">Web Service using ASP.Net MVC</a>... well at least I'm 80% of the way through after 8 posts. Have a look at:</p> <p><a href="http://shouldersofgiants.co.uk/blog/" rel="nofollow">http://shouldersofgiants.co.uk/blog/</a></p> <p>The web service I'm developing supports multiple representations (XHTML / JSON / XML / HELP) handles as many possible errors as I could find and supports POST overloading.</p>