如何配置仅由一个特定的 Web 应用程序调用 Web 服务?两者都在同一个 IIS 服务器中。框架:2.0
我认为设置 web 服务的 web.config 就足够了。在这个例子中,我正在设置 web 服务的 web.config。Web服务只会被一个IP地址调用(127.0.0.1是IIS服务器的IP):
<location path="resources">
<system.webServer>
<security>
<ipSecurity allowUnlisted="false">
<clear/>
<add ipAddress="127.0.0.1"/>
</ipSecurity>
</security>
</system.webServer>
</location>
会好吗?