I am using ASP.NET web services. For the purposes of this question lets say I have 2 web methods:
[WebMethod]
public string Checkmeplese() {
return "Hello World";
}
[WebMethod]
public string CheckSomethingElse()
{
return "Check Something Else String";
}
and that I am using the latest version of IIS.
If I place my web services on a publicly accessible server then I can access it with no problem, but so can everyone else.
I want to build a frontend which will use the web service but I don't want other people to be able to access it.
How can I do that only my project will be able to access the web service, or at least IP?