protect communication between Client application & WCF service
I have a Client desktop application (WinForms). The application connects to WCF-service. Can I block any request to the WCF-service if the requests were sent from other applica开发者_Python百科tion?
Many thanks, Sam
I would send a unique datum with every request from your app to your service by which you can identify the app. If that unique datum is not present in the data received, reject the request.
精彩评论