例外:
由于Web服务器上此资源的访问控制列表(ACL)配置或加密设置,您无权查看此目录或页面。
我是第一次学习WCF,我试图在IIS上托管它。我是一个完全的初学者,所以我可能做过任何愚蠢的错误。
从Visual Studio运行WCF:
我能够打开WSDL文档,并能够在本地运行时进行浏览。
现在,当我在IIS管理器中将其添加为网站时,我得到了上述异常。
配置文件:
<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior name="mexBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="mexBehavior" name="WSHttpService.WSHttpService">
<endpoint address="WSHttpService" binding="wsHttpBinding" contract="WSHttpService.IWSHttpService" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
<system.web>
<compilation debug="true"/>
</system.web>
</configuration>
微软因显示完全错误的错误而闻名。请一些人帮助我,因为我可能会做一些其他愚蠢的错误。
解决方案我调查了SO Link
要检查的一些事情。确保您的IIS用户帐户有权查看代码所在的文件夹。
我会将绑定更改为基本http,直到您可以按预期获得IIS响应。
此外,如果您在iis中托管与iisExpress主机,则“add baseAddress =”http:// localhost:8080“”将影响IIS尝试如何为端点提供服务。