I've been tasked with building a basic admin app. The app needs an ASP.NET front end which talks to a number of back end services using WCF.
One requirement is that the users of the app are authenticated using Windows authentication. I can do this no problem if the app logic were contained in the ASP.NET app, but I have no idea how to perform authentication within the back end WCF services?
- Is it possible to pass credentials through to a WCF service and have it perform the authentication?