gpt4 book ai didi

c# - 无法使用 net.tcp 绑定(bind)错误 10049 启动服务

转载 作者:可可西里 更新时间:2023-11-01 02:38:45 26 4
gpt4 key购买 nike

我在使用 net.tcp 端点启动 WCF 服务时遇到问题。我收到 10049 错误。

我的app.config:

<system.serviceModel>
<services>
<service behaviorConfiguration="ServiceBehaviour0"
name="Tinkl.Server.Services.Authentication.AuthenticationService">
<endpoint name="httpEndpoint"
address="reg"
binding="basicHttpBinding"
contract="Tinkl.Server.Services.Authentication.IRegistrationService" />
<endpoint name="httpEndpoint"
address="auth"
binding="basicHttpBinding"
contract="Tinkl.Server.Services.Authentication.IAuthorizationService" />
<!--
<endpoint name="tcpEndpoint"
address="net.tcp://78.26.210.203:50050/reg"
binding="netTcpBinding"
contract="Tinkl.Server.Services.Authentication.IRegistrationService" />
<endpoint name="tcpEndpoint"
address="net.tcp://78.26.210.203:50051/auth"
binding="netTcpBinding"
contract="Tinkl.Server.Services.Authentication.IAuthorizationService" />
-->
<endpoint name="mexEndpoint"
address="mex"
binding="mexHttpBinding" bindingConfiguration=""
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://78.26.210.203:50076/" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehaviour0">
<!--<serviceMetadata />-->
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="True" />
</behavior>
</serviceBehaviors>
</behaviors>

netTcpBinding 有 2 个端点,basicHttpBinding 有 2 个端点。

当我尝试使用 netTcpBinding 端点时出现问题,我收到错误,但使用 basicHttpBinding 它工作正常...

enter image description here

我在控制台应用程序中托管 WCF 服务。

程序代码

ServiceHost authenticationHost = new ServiceHost(typeof(AuthenticationService));
authenticationHost.Open();

Console.WriteLine("close <ENTER>\n");

Console.ReadLine();
authenticationHost.Close();

也许有人遇到过类似的问题?

如果需要,我会提供所有必要的附加信息

提前致谢!

最佳答案

尝试替换行

net.tcp://78.26.210.203:50050/reg

net.tcp://localhost:50050/reg

/auth 端点也是如此。

关于c# - 无法使用 net.tcp 绑定(bind)错误 10049 启动服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39932200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com