Reputation: 28208
I am curious about how the Azure REST Api is built. Did Ms use the Rest Starter Kit or the WCF Web.API? Or are these SOAP services exposed over HTTP bindings ?
Upvotes: 5
Views: 366
Reputation: 142174
The table services API most likely uses WCF Data Services or some customized variant of it. The other APIs probably use .Net 4 WCF REST. They certainly don't use REST starter kit because it was only ever a prototype. And Web API is still in development so I know they don't use that.
Upvotes: -1