Building a REST API architecture in MVC 3

added by schwarty
8/11/2011 9:40:23 AM

567 Views

Learn how to build a REST API architecture within an ASP.NET MVC 3 application.


2 comments

dpeterson
8/11/2011 6:03:30 PM
Very nice article, more than enough to get up and running with REST under ASP MVC3.
It feels a lot like the Nancy project https://github.com/thecodejunkie/Nancy but with the benefits of having MVC baked in should you need it.

vijayst
8/14/2011 8:39:56 AM
I have implemented a similar restful architecture for comments in my blogging application: http://liteblog.codeplex.com.

One thing that I like to point out is you have not covered how to use these JSON objects from Javascript. This will make the post a very good reference material.