RESTful Web Services with ASP.NET MVC - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T11:28:05Zhttp://stackoverflow.com/feeds/question/220845http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220845/restful-web-services-with-asp-net-mvc2RESTful Web Services with ASP.NET MVCShiju2008-10-21T05:20:00Z2009-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#2208510Answer by calebjenkins for RESTful Web Services with ASP.NET MVCcalebjenkins2008-10-21T05:22:47Z2008-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#2208621Answer by SaaS Developer for RESTful Web Services with ASP.NET MVCSaaS Developer2008-10-21T05:31:41Z2008-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#2209283Answer by Pradeep Kumar Mishra for RESTful Web Services with ASP.NET MVCPradeep Kumar Mishra2008-10-21T06:08:12Z2008-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#2256570Answer by CraftyFella for RESTful Web Services with ASP.NET MVCCraftyFella2008-10-22T13:08:32Z2008-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#2719981Answer by Piers Lawson for RESTful Web Services with ASP.NET MVCPiers Lawson2008-11-07T13:01:29Z2008-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>