Hi, i am new to WCF Services.
I have created 2 methods in wcf services like this:
[OperationContract]
string GetEmployee(int i);
[OperationContract]
string GetEmployeeDetails(int i);
After i successfully build the project and used the service reference, i am able to see both the methods (GetEmployee & GetEmployeeDetails).
Suppose if i need to provide this Service method "GetEmployee" to outside of my organization, how can i prevent others from accessing "GetEmployeeDetails" method which resides in the same service?
Hope, everyone understand my requirement. Please suggest me how to
achive this
Regards,
Veerendranadh