ASP.NET WEB API Programming
                                                                                   ASP.NET WEB API.      In this blog post we will see a sample example to quick start ASP.NET WEB API Programming.     Before starting we will understand few important questions about the existence of the ASP.NET Web API.       Question 1 : Is ASP.NET WEB API is replacement of WCF ?     No,Web API has not replaced existing web service technology called WCF, but it's way different from WCF, where WCF follows SOAP based message formatting and Web API services  are non-SOAP based and returns plain XML or JSON string etc.  Web API transport data over network using HTTP Protocal unlike WCF.    WCF uses different protocols for transferring data over HTTP, TCP, MSMQ, Named pipes.etc.         Question 2 :  ASP.NET Web API vs  WCF RESTful Service  ?    Both  ASP.NET Web API and  WCF REST follows the REST principle but having following differences:       ASP.NET Web API   ...