How to configure that a web service only be called by one specific web application? Both ones are in the same IIS server. Framework: 2.0
I think that setting web.config of web service would be enough. On this example, I'm setting web.config of web service. Web service will be called only by one IP address (127.0.0.1 is IP of IIS Server):
<location path="resources"> <system.webServer> <security> <ipSecurity allowUnlisted="false"> <clear/> <add ipAddress="127.0.0.1"/> </ipSecurity> </security> </system.webServer> </location> Would it be ok?