I have a WCF services. Which has two methods, say Get and Save. I want to expose only the Get method to the third party who will be consuming the service while my application should be able to consume both Get and Save.
Is there a way to consume a method not in OperationContract? I am thinking of verifying the host name of the request and granting access only if it is the host name of my application.