How do i avoid calling a webservice from other domain?
I want my webservices to be hidden from other projects / domain?
How do i avoid calling a webservice from other domain?
I want my webservices to be hidden from other projects / domain?
Web Services can be checked form the firewall where request is coming. It can checked by the content-type of the response. All webservices have "application/soap-xml" as content-type.
Authenticate all your requests to your functions and reject the calls that are not authenticated. check this for more.