REST-based HTTP API - should I use WCF?

I would like to encode REST-based HTTP APIs available from .NET and any other language like Python.

Should I use WCF for this? Or will it make it difficult for other languages ​​to interact with my API?

I want the server to have no state at all, and I want to be able to use persistent HTTP connections because a typical clinic will make many HTTP calls in a row. (maybe 2 hours in a row)

I am allowed to use .NET 4.

+3
source share
4 answers

WCF has new material for supporting HTTP and REST. See http://wcf.codeplex.com/

intro http://www.bizcoder.com/index.php/2010/10/28/wcf-http/

+6

WCF , , . REST Starter Kit Microsoft .

.NET REST - OpenRasta - , .

+1

WCF. - ( ) , . . .

0
source

Source: https://habr.com/ru/post/1772136/


All Articles