从 Web.config 启用 net.tcp 协议

发布于 2024-12-03 22:23:15 字数 275 浏览 1 评论 0原文

我的 WCF 服务具有 http 和 net.tcp 端点。我已将该服务部署到 IIS 7.5(服务器 2008R2),一切正常。

我的问题是,有没有办法通过 Web.config 设置 IIS 应用程序启用的协议?现在我必须转到 IIS 中的应用程序并手动更改高级设置并将 net.tcp 添加到可用协议列表中,然后才能激活该服务,请参见屏幕截图。

IIS 协议设置

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.

IIS Protocol Settings

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

任谁 2024-12-10 22:23:15

不,此设置无法通过 web.config 获得。它可以像您正在做的那样通过 IIS 管理器进行设置,也可以通过 AppCmd.exe 命令行实用程序进行设置,如下例所示:

%windir%\system32\inetsrv\appcmd.exe set app "Default Web Site/FirstWcfHost" /enabledProtocols:http,net.tcp

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:

%windir%\system32\inetsrv\appcmd.exe set app "Default Web Site/FirstWcfHost" /enabledProtocols:http,net.tcp
土豪 2024-12-10 22:23:15

不,这不是网络范围的设置。它是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文