wcf data service security configuration

Posted by Daniel Pratt on Stack Overflow See other posts from Stack Overflow or by Daniel Pratt
Published on 2010-04-21T00:45:42Z Indexed on 2010/04/21 0:53 UTC
Read the original article Hit count: 622

Filed under:
|

I'm in the process of setting up a WCF Data Services web service and I'm trying to sort out the security configuration. Although there's quite a lot of documentation out there for configuring WCF security, a lot of it seems to be outmoded or does not apply to my scenario.

Ultimately, I am planning on managing authorization of operations via change interceptors. Thus, all I really need is the simplest way to permit a client to pass credentials along with a request and to be able to authenticate those credentials against either AD or an ASP.NET membership provider (I'd much prefer the latter unless it makes things much more complicated).

I'm intending to manage encryption at the transport level (i.e. HTTPS).

I'm hoping that the eventual solution does not involve a huge web.config. Likewise, I'd much prefer to avoid writing custom code for the purpose of authentication.

© Stack Overflow or respective owner

Related posts about wcf

Related posts about wcf-data-services