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.
source
share