ASP.NET MVC and Automatic RESTful Features - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:32:59Zhttp://stackoverflow.com/feeds/question/471860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/471860/asp-net-mvc-and-automatic-restful-features1ASP.NET MVC and Automatic RESTful FeaturesB. Tyndall2009-01-23T04:11:53Z2009-01-23T06:52:58Z
<p>Does ASP.NET MVC have anything like the RESTful out-of-the-box features like Ruby on Rails 2.0?<br />
For example: <a href="http://www.viget.com/extend/curl-and-your-rails-2-app/" rel="nofollow">cURL and Your Rails 2 App</a></p>
<p>I think this is the built in REST access to your Models. Since models can be implemented in different ways in ASP.NET MVC is there a feature like this?</p>
http://stackoverflow.com/questions/471860/asp-net-mvc-and-automatic-restful-features/471891#4718911Answer by CubanX for ASP.NET MVC and Automatic RESTful FeaturesCubanX2009-01-23T04:33:14Z2009-01-23T04:33:14Z<p>I think the closest you'll come to this that I know of right now is some of the work Rob Conery is doing like this:</p>
<p><a href="http://blog.wekeroad.com/blog/subsonic-mvc-scaffold-addin/" rel="nofollow">http://blog.wekeroad.com/blog/subsonic-mvc-scaffold-addin/</a></p>
<p>It's not exactly what you're asking for, but it provides what you want via scaffolding instead of the cURL type implementation.</p>
http://stackoverflow.com/questions/471860/asp-net-mvc-and-automatic-restful-features/472116#4721161Answer by Dale Ragan for ASP.NET MVC and Automatic RESTful FeaturesDale Ragan2009-01-23T06:52:58Z2009-01-23T06:52:58Z<p>Inside the <a href="http://www.codeplex.com/MVCContrib" rel="nofollow">MvcContrib</a> open source project there is a class called <a href="http://www.codeplex.com/MVCContrib/Wiki/View.aspx?title=SimplyRestfulRouting&referringTitle=Documentation" rel="nofollow">SimplyRestfulRouteHandler</a>. Using this class you can add routes to your site that will follow the REST approach.</p>
<p>Here is a good <a href="http://kevinortman.blogspot.com/2008/04/simplyrestfulroutehandler-sample.html" rel="nofollow">post</a> on how you can use it.</p>