I am designing a distributed application that will consist of RESTful services and a variety of clients (Silverlight, iOS, Windows Phone 7, etc). Right now I’m determining which technology I should use to implement my services, WCF Data Services (OData) or the new ASP.NET Web API that’s coming out with ASP.NET MVC 4.
I’ve watched a few presentations online about each and right now I’m leaning towards WCF Data Services primarily because of the filtering mechanisms built into the URI and native hypermedia capability. The only downside I can see is the verbosity of the Atom Pub specification as opposed to POX.
Is there anything I should know about these two technologies before making a decision? Why would someone choose ASP.NET Web API over WCF Data Services?
This is a subjective question, so here’s a subjective answer. IMO, WCF has way too much overhead for simple RESTful services. Web API, on the other hand, was designed specifically for RESTful services.
I’m in agreement with Dave Ward on this. Check out his blog for more information.