ASP.NET MVC and Automatic RESTful Features - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T06:32:59Z http://stackoverflow.com/feeds/question/471860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/471860/asp-net-mvc-and-automatic-restful-features 1 ASP.NET MVC and Automatic RESTful Features B. Tyndall 2009-01-23T04:11:53Z 2009-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#471891 1 Answer by CubanX for ASP.NET MVC and Automatic RESTful Features CubanX 2009-01-23T04:33:14Z 2009-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#472116 1 Answer by Dale Ragan for ASP.NET MVC and Automatic RESTful Features Dale Ragan 2009-01-23T06:52:58Z 2009-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&amp;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>