Reputation: 687
We have a WCF service running in Azure and have client application (WPF) consuming the servcie. Can anybody point me in the right direction on how I can secure the WCF service so that only my client application can access the public methods or applications allowed can access the public methods
Upvotes: 0
Views: 318
Reputation: 1977
there are lots of possibilities depending on binding you are using, an approach could be to use Message Security with X509 certification in WSHtttpBinding you can read about it's example here
these are general ideas based on your environment and constraints it can be different.
Upvotes: 1