There's been so many topics I've read on this, but I have to just be 100% sure I'm going in the right direction with my scenario.
The main thing I'm wanting to do is lock down a WCF service (.NET 4.5) to a single web application (potentially more in the future though).
So,
Web Application (logged in via .NET Membership) -> WCF Service -> Data layer -> Database
The WCF Service should not allow access via anywhere but the Web Application.
What's the best way of achieving this? I've read about Username/Password validation to the WCF Service, but obviously you don't store the Password in a Session object once the user has logged into the Web Application, so this doesn't make much sense to me. Is the only way using a Certificate and the WCF Service checking that the Web App has that Certificate when being called?
Any help in lamens terms is greatly appreciated, I feel like I'm stuck in a WCF Security nightmare.