vote up 1 vote down star

Does ASP.NET MVC have anything like the RESTful out-of-the-box features like Ruby on Rails 2.0?
For example: cURL and Your Rails 2 App

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?

flag

68% accept rate

2 Answers

vote up 1 vote down check

Inside the MvcContrib open source project there is a class called SimplyRestfulRouteHandler. Using this class you can add routes to your site that will follow the REST approach.

Here is a good post on how you can use it.

link|flag
vote up 1 vote down

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:

http://blog.wekeroad.com/blog/subsonic-mvc-scaffold-addin/

It's not exactly what you're asking for, but it provides what you want via scaffolding instead of the cURL type implementation.

link|flag
+1 - I have been meaning to give SubSonic another shot. Its been at least 2 years since the last time I looked at it. – B. Tyndall Jan 23 at 5:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.