vote up 1 vote down star

Looking for alternatives to the WCF REST start kit, ideally OSS frameworks.

Anyone got a list?

Cheers

Ollie

flag

3 Answers

vote up 5 vote down check

OpenRASTA is the most mature

link|flag
vote up 2 vote down

ASP.NET MVC is a good alternative when it comes to generating REST XML and JSON feeds.

link|flag
vote up 1 vote down

To build a rest architecture in .net you can use GenericHandlers. You can create a GenericHandler that will receive a HTTP message (POST, GET or..) and return a message of the content-type you specify.

For example I create a generic handler on the url:

http://site/getpeople.ashx?gender=female

And call it with the parmeter gender=female, as above the handler will return the following

<people>

<person>...</person>
...
<people>

And the content type would be text/xml.

This is the simplest way to implement REST web services in .NET

link|flag
Using text/xml is not recommended, hasn't been for years. Using application/xhtml+xml is frowned upon in rest architectures. Not worth a downvote, but not worth the original upvote I think. – serialseb Oct 23 at 0:01
Could you, please, specify why is frowned upon? – Nikola Stjelja Oct 26 at 8:13

Your Answer

Get an OpenID
or

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