Testing ASP.Net Web API–GET, POST, PUT, DELETE using Fiddler
In the recent past I am fortunate to get my hands on to new technology ASP.Net Web API. I was fascinated to hear ASP.Net Web API’s definition from MSDN as follows – “ASP.NET Web API is a framework that...
View ArticleSimple Custom Media Formatter in ASP.Net Web API
Media formatters in ASP.Net Web API is useful to define our own custom content-type with which we can present data in a specific format. By default Web API support XML, JSON and form-urlencoded data...
View ArticleRestrict REQUEST Media Types in ASP.Net Web API
In this short tutorial, we are going to see how to restrict different requests for different media types in Web API. In reality, a generic Web API needs to support different Content-types to provide...
View ArticleAttribute based routing in ASP.Net Web API
Most of us already knew the traditional routing concepts in Web API which we configure in WebApiConfig file. This approach solves most of the basic routing problems, but it limits the granular control...
View ArticleFile Upload using MultipartFormDataStreamProvider in ASP.Net WebAPI
In this short tutorial, we are going to see how to upload multiple files using MultipartFormDataStreamProvider in ASP.Net WebAPI. The concept is based on Multipart/form-data in which we can POST not...
View ArticleUpload large files to Azure Blob Storage through Azure Web Role WebApi...
The main aim of this project is to provide a working scalable solution for uploading large files to server. In this modern era, when web development taking modern cloud workflows, it is time for us to...
View ArticleGetting Started with AngularJS – Create & Read Operations with Database...
In this article, we are going to see the implementation of Basic Create and Read database operations using AngularJS, ASP.Net WebAPI and Entity Framework. AngularJS – AngularJS is a popular Open Source...
View ArticleGetting Started with AngularJS – Update & Delete Operations with Database...
This article is in continuation with the previous article,Get Started with AngularJS – Create & Read Operations with Database Connectivity.You can go through it by clicking on the following link....
View ArticleASP.Net Web API Versioning
In this tutorial, we are going to see how to support versioning for ASP.Net Web API endpoints. Versioning helps API owners to roll out enhanced functionalities to different customers on a time to time...
View Article