我有几个网站,我有自动配置,并通过脚本进行部署(所以我确信我的设置与发布预览中的相同)。
安装IIS并部署我的网站后,我收到此错误:
分析程序错误消息:找不到配置绑定扩展“system.serviceModel / bindings / netHttpBinding”。验证此绑定扩展是否已在system.serviceModel / extensions / bindingExtensions中正确注册,并且拼写正确。
我已尝试在3台不同的RTM机器上安装,但未能在网上找到任何相关信息。任何帮助表示赞赏。
答案 0 :(得分:2)
尝试将httpRuntime-Element添加到web.config中。这可以解决你的问题。
愿望, 佛瑞德
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5"/>
</system.web>