By tag: webapi
0
kicks
Clean up your MVC app with SignalR
In this post we'll see what SignalR can do to make our MVC app cleaner. Instead of the more common Server->Client posts on SignalR, this post focuses more on the Client->Server communication of things.
0
kicks
Using RabbitMQ with EasyNetQ Tutorial and Screencast
In this screencast (which also has a full written tutorial), we create a simple WebApi application that takes orders for Tesla cars (yes I want one) and pushes them onto RabbitMQ using the brilliantly easy EasyNetQ. We then create a simple Console App that subscribes to the queue and processes all t...
0
kicks
Load testing REST APIs
A round-up of the tools I've found and used for load testing REST APIs. Hopefully a time-saver for other developers going down the same path.
0
kicks
Experiences Implementing an API in WebAPI
A series of 9 blog posts covering the experiences of implementing an API for an existing .Net application using Microsoft's ASP.Net Web API - parts in the series include:
* Links in models, absolute URI generation and JSON rewriting.
* Implementation of Expand support and the process of mapping ...
0
kicks
Basic HTTP authentication in ASP.NET Web API using membership provider
Blog pos showingt how to provide Basic HTTP authentication in ASP.NET Web API with support for membership and role providers by extending framework’s AuthotrizeAttribute.