从 Web.config 启用 net.tcp 协议
我的 WCF 服务具有 http 和 net.tcp 端点。我已将该服务部署到 IIS 7.5(服务器 2008R2),一切正常。
我的问题是,有没有办法通过 Web.config 设置 IIS 应用程序启用的协议?现在我必须转到 IIS 中的应用程序并手动更改高级设置并将 net.tcp 添加到可用协议列表中,然后才能激活该服务,请参见屏幕截图。
I have WCF service that has http and net.tcp endpoints. I have deployed the service to IIS 7.5 (Server 2008R2), everything is working good.
My question is this, is there a way to set enabled protocols for the IIS application through Web.config?? Right now I have to go to the Application in IIS and manually change the Advanced settings and add net.tcp to the list of available protocols before the service can be activated, see pic for the screenshot.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,此设置无法通过 web.config 获得。它可以像您正在做的那样通过 IIS 管理器进行设置,也可以通过 AppCmd.exe 命令行实用程序进行设置,如下例所示:
No, this setting isn't available via web.config. It can be set either via the IIS Manager as you're doing, or via the AppCmd.exe command-line utility, as in the example below:
不,这不是网络范围的设置。它是 Web 应用程序(应用程序池)范围之一,因此位于 applicationHost.config 文件中。
No, this is not a web-scoped setting. It is web application (app pool) scoped one, so it is in the applicationHost.config file.