6

我最近在我的服务器上安装了新的 .NET Framework 4.5(以前安装了 4.0),System.ServiceModel.AddressAlreadyInUseException当我启动暴露 WCF 端点的 Windows 服务时,我得到了一个。

System.ServiceModel.AddressAlreadyInUseException:IP 端点 0.0.0.0:56543 上已经有一个侦听器。如果有另一个应用程序已经在侦听此端点,或者您的服务主机中有多个服务端点具有相同的 IP 端点但具有不兼容的绑定配置,则可能会发生这种情况。---> System.Net.Sockets.SocketException:在 System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, SocketAddress socketAddress) 中,每个套接字地址(协议/网络地址/端口)通常只允许使用一次。 System.ServiceModel.Channels.SocketConnectionListener.Listen() 处的 Net.Sockets.Socket.Bind(EndPoint localEP) --- 内部异常堆栈跟踪的结束 --- System.ServiceModel.Channels.SocketConnectionListener.Listen() 处。 ServiceModel.Channels。
在 System.ServiceModel.Channels.TransportManager.Open(TransportChannelListener channelListener) 在 System.ServiceModel.Channels.TransportManagerContainer.Open(SelectTransportManagersCallback selectTransportManagerCallback) 在 System.ServiceModel.Channels.TransportChannelListener.OnOpen(TimeSpan timeout) 在 System.ServiceModel.Channels.ConnectionOrientedTransportChannelListener .OnOpen(TimeSpan 超时)在 System.ServiceModel.Channels.TcpChannelListener`2.OnOpen(TimeSpan 超时)在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan 超时)在 System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan 超时)在 System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout) 在 System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout) 在 System.Qosit.Infrastructure.UnisServer.OnStart(String[] args) 处的 ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)

我的 WCF 端点的配置如下所示:

<system.serviceModel>
    <bindings>
      <netTcpBinding>
        <binding name="NetTcpBindingConfiguration" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions" hostNameComparisonMode="StrongWildcard" listenBacklog="10" maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10" maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32" maxStringContentLength="5242880" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
        </binding>
      </netTcpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="MEX">
          <serviceMetadata/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <services>
      <service behaviorConfiguration="MEX" name="MyAssembly.MyNamespace.MyService">      
        <endpoint address="net.tcp://localhost:56543/MyService"
          binding="netTcpBinding" bindingConfiguration="NetTcpBindingConfiguration" contract="MyAssembly.MyNamespace.MyServiceInterface" />
        <endpoint address="net.tcp://localhost:56543/MEX" binding="mexTcpBinding"
          contract="IMetadataExchange" />
      </service>
    </services>
  </system.serviceModel>

我认为这与使用相同端口的 MEX 端点有关,但我不确定在升级到 .NET Framework 4.5 后如何正确配置它。

WCF 是否发生了变化,以便这些配置引发异常?

4

2 回答 2

16

这是因为在此处记录的 netTcp 端点和 mex 端点使用相同端口时存在一些限制,请参阅“使用 NetTcpBinding 在服务端点和 mex 端点之间共享端口”部分。在 4.0 中,listenBackLog和的默认值为MaxConnections10。在 4.5 中,这些默认值被修改为 12 * ProcessorCount。当您尝试在 netTcpBinding 和 mex 端点之间共享端口时会发生此异常,前提是您对这两个属性具有不同的值。在 4.0 中,这工作得很好,因为您已将这些设置为默认值 (10),因此这些设置在两个端点上没有区别。但在 4.5 中,对于 netTcp 端点,这些保留为 10,但计算为 12* ProcessorCount。所以例外。

要解决这个问题,有两种方法:

  1. 从配置中删除这些设置(listenBackLogMaxConnections)。这样,您将自动获得默认值 12 * 处理器计数,该值大于 4.0 默认值。
  2. 按照文档中的描述,按照在不同端口上配置 mex 端点的解决方法

请查看此博客以获取更多详细信息。

于 2012-10-16T19:50:18.410 回答
0

当您在控制台应用程序中托管 WCF 服务时,您需要将 App.config 文件从 WCF 项目复制到控制台应用程序,然后从 WCF 项目中删除 App.config 文件,如果不这样做,您还可以获得以上错误。

于 2016-02-27T11:18:04.493 回答