Reputation: 4092
I am currently on the .Net 3.5 stack (including VS2008 tooling) and will not be upgrading anytime soon. What options are available to me in order to create a restful API that will be consumed by my own web application. I see my options as:
I need the following features:
My uncertainty is what versions, etc do I look at for my stack and what are the arguments for and against each?
Upvotes: 4
Views: 3936
Reputation: 2421
Also look at Mindtouch Dream: is a very mature Rest server and client library. Some points
(I'm not sure about if it will meet your Authentication / Authorization needs)
Upvotes: 1
Reputation: 27632
There are a few options:
A few more I have found on the web but know nothing about:
You can use MVC directly but keep in mind that is is not designed as a REST framework so doesn't thinks like content negotiation for you. You would have to build that yourself. Depending on what you are trying to do that might be a lot of work or it might be quite simple.
Upvotes: 3