Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Enabling CORS in Web API

Enabling CORS in Web Api was originally published in Tech+Life+Music.

I found myself having to create a completely REST-enabled API for an in-house solution, so what better way to do this in .NET than leveraging ASP.NET Web API?

So yeah, enabling CORS in Web API

While Web API makes mostly everything about the process simple and easy, considering that this is going to be a full-fledged REST API, I had to consider allowing cross-domain requests to the API, which normally meant that I had to enable cross-origin resource sharing (CORS) on it.

I found a nice handful of good resources for ASP.NET Web API CORS support, but I found Carlos Figueira’s take on it the most helpful, so I went ahead and adapted his code into my own small AOP library for use with future projects.

Using the library should be as easy as just adding [CorsEnabled] on your API actions and/or controllers. It provides a bit of additional functionality if you need it (like specifying allowed domains if you want).

Feel free to get the code here. I wholeheartedly welcome comments on it, and if you find that you want to fork it, be my guest.



This post first appeared on Tech+Life+Music By Richard Neil Ilagan, please read the originial post: here

Share the post

Enabling CORS in Web API

×

Subscribe to Tech+life+music By Richard Neil Ilagan

Get updates delivered right to your inbox!

Thank you for your subscription

×