Reputation: 23515
I currently use asmx for Json transactions using Jquery.
How do I protect it from being accessed across other websites and make it exclusive only through my domain?
Upvotes: 2
Views: 391
Reputation: 625077
Ensure the requestor has:
This will prevent the behaviour that is most akin to hotlinking. However if a site uses an HTTP library to use your Web service and it's public there's not a lot you can do beyond IP throttling and similar techniques.
Upvotes: 3