Slappy
Slappy

Reputation: 4092

What are the options for a REST API for .Net 3.5 stack

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

Answers (2)

DaniCE
DaniCE

Reputation: 2421

Also look at Mindtouch Dream: is a very mature Rest server and client library. Some points

  • It has a very good support for async services
  • can work with .net 3.5 or mono.
  • the last version can also be integrated with Asp Mvc (optional, its completety independent from asp).
  • its on github

(I'm not sure about if it will meet your Authentication / Authorization needs)

Upvotes: 1

Maurice
Maurice

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

Related Questions