Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been challenged with the task of coming up with an authentication/authorization strategy for a pretty big WCF API. My task is to implement security on this API from clients who might be a website, a mobile app, or an internal/network admin user (which is pretty much the goal of any solid API).

I have looked into Windows Identity Foundation and federated security, but it relies on WS-* and my clients might be using REST or a non-SOAP protocol. So, my question:

Is there a security strategy (per method call, preferably using attributes) for WCF that does not rely on SOAP or involve reams of configuration files?

I realize there's probably no catch-all solution. I'm really looking for ideas or suggestions. This turns out to be a really tricky challenge.

share|improve this question

2 Answers

Basic Authentication and HTTPS is a straightforward and "secure enough" solution for most API authentication requirements.

When you say "per method call", I'm getting the impression that are talking about authorization. For that you are probably going to have to roll something yourself. The upcoming Microsoft Web Api framework has some good extension points that will make this type of functionality much easier to implement. It shouldn't be too long before someone implements a reusable module for this framework that you can just plug in.

share|improve this answer
Thanks for the suggestion. I'll keep my eye out for that. Sounds promising. – Don Fitz Apr 16 '11 at 4:02

Dominick Bayer wrote a couple of blog posts (http://www.leastprivilege.com/) on securing REST-API services with the Windows Identity Foundation: e.g. Adding a REST Endpoint to a WIF Token Service and Thinktecture.IdentityModel: WIF Support for WCF REST Services and OData.

There is also a video from the TechDays Sweden: http://www.microsoft.com/showcase/sv/se/details/ffc61019-9756-4175-adf4-7bdbc6dee400 (it has "Windows Azure" in the title, but works the same outside of azure).

share|improve this answer
Nice. I've read some of his stuff and he's good at providing code. I'll check this out. Thanks. – Don Fitz Jul 26 '11 at 4:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.