ASP.NET Web API

Rate Limiting in ASP.NET MVC

Rate limiting, also known as request throttling, is an important mechanism for controlling how often web resources are accessed from a client. Implementing it on your web application or service will allow you to utilize its resources better and protect it from a high volume of malicious requests. In this article we will demonstrate how to implement and setup request throttling in an ASP.NET MVC application.

Using ASP.NET Web API Framework

ASP.NET Web API is a framework for building web APIs on top of the .NET Framework. In this blog post we will show how to create a web service that returns a list of products and how to consume it and display the returned objects with the ShieldUI Grid widget.
The complete code for this example can be downloaded from here.

Subscribe to RSS - ASP.NET Web API