使用端口 80 的 Net.tcp 绑定
我们正在尝试使用端口 80 运行带有 net.tcp 绑定的 wcf 服务。当我们尝试启动该服务时,出现错误 10013。
该服务在端口 8099 上运行良好,直到操作阻塞了该端口:)
我们的替代方案是切换到 basichttpbinding 。
我想知道的是:是否有一些根本原因导致 nettcp 绑定不适用于端口 80。
We are trying to run a wcf service with net.tcp binding using port 80. When we try to start the service we get error 10013.
The service worked fine on port 8099 untill operations blocked the port :)
Our alternative is to switch to basichttpbinding.
What I am wondering is: Is there some fundamental reason why nettcp binding does not work with port 80.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
端口 80 可能已被 IIS 使用。您需要禁用在该端口上运行的网站。
Port 80 is probably being used already by IIS. You'd need to disable the websites running on that port.
尝试检查是否有任何应用程序已在使用端口 80,或尝试以管理员身份运行它。防火墙规则也会导致此问题出现。
看看是否有帮助。
Try checking if there's any application already using port 80, or try running it as administrator. Firewall rules can make this problem appear too.
See if it helps.