问题描述
我正在尝试连接到某人设置的 WCF 服务,但遇到了问题,我不知道 808:* 在 net.tcp 站点绑定的绑定信息"中是什么意思.
I am trying to connect to a WCF service someone set up and i'm having trouble, I have no idea what 808:* means in the "Binding Information" for net.tcp site bindings.
谢谢
这是在 IIS 7 中配置绑定的方式(导航到 IIS,右键单击托管服务的应用程序,单击编辑绑定").有两个条目:
this is how the bindings are configured in IIS 7 (navigate to IIS, right click on the application hosting the service, click 'edit bindings'). there are two entries:
类型:http,端口:8000,ip地址:*,绑定信息:(空)
type: http, port: 8000, ip address: *, binding information: (empty)
类型:net.tcp,端口:(空),ip地址:(空),绑定信息:808:*
type: net.tcp, port: (empty), ip address: (empty), binding information: 808:*
推荐答案
我知道这是一篇旧帖子,但这可能会帮助那些回来寻找与此类似的答案的人:
I understand this is an old post but this might help someone that comes back looking for an answer similar to this:
808
是你监听的端口号*
是主机名的通配符,这意味着它将处理来自端口 808 的任何具有任何主机名的请求.
808
is your port number you listen on *
is a wild card for host name which means it will handle any requests coming in on port 808 with any host name.
这篇关于WCF net.tcp binding 808:* 这是什么意思?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!