Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF Data Services Security Options

What options are there for securing WCF Data Services? The open, RESTful nature of the services are extremely beneficial but I need to lock these services down so that only my Silverlight and WPF apps can perform requests against these services. The app will be distributed publicly, but our data and data model are not free for public consumption.

like image 262
Blake Blackwell Avatar asked Apr 07 '10 13:04

Blake Blackwell


1 Answers

Besides all the things already mentioned, WCF Data Services also have a concept called Query Interceptors which allows you on a programmatic basis to decide whether or not a given caller should be able to see all, some or no data at all.

like image 110
marc_s Avatar answered Oct 27 '22 09:10

marc_s