【问题标题】:Basic WCF hosting over TCP基于 TCP 的基本 WCF 托管
【发布时间】:2012-05-30 02:07:16
【问题描述】:

我正在尝试通过 tcp 在 Windows 服务中托管 wcf 服务。一切都很好,直到安装服务并启动它。但是,当我添加客户端应用程序并尝试为其添加服务引用时,我收到了此错误。

System.ServiceModel.AddressAlreadyInUseException:
There is already a listener on IP endpoint 0.0.0.0:8523. 
Make sure that you are not trying to use this endpoint multiple times 
in your application and that there are no other applications listening 
on this endpoint. ---> 

System.Net.Sockets.SocketException: Only one usage of each socket address 
(protocol/network address/port) is normally permitted
   at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, 
      SocketAddress socketAddress)
   at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   at System.ServiceModel.Channels.SocketConnectionListener.Listen()
   --- End of inner exception stack trace ---
   at System.ServiceModel.Channels.SocketConnectionListener.Listen()
   at System.ServiceModel.Channels.ConnectionAcceptor.StartAccepting()
   at System.ServiceModel.Channels.ExclusiveTcpTransportManager.OnOpen()
   at System.ServiceModel.Channels.TransportManager.Open(
      TransportChannelListener channelListener)
   at System.ServiceModel.Channels.TransportManagerContainer.Open(
      SelectTransportManagersCallback selectTransportManagerCallback)
   at System.ServiceModel.Channels.TcpChannelListener`2.OnOpen(
      TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.Dispatcher.ChannelDispatcher.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(TimeSpan timeout)
   at System.ServiceModel.ServiceHostBase.OnOpen(TimeSpan timeout)
   at System.ServiceModel.Channels.CommunicationObject.Open(
      TimeSpan timeout)
   at Microsoft.Tools.SvcHost.ServiceHostHelper.OpenService(ServiceInfo info)

System.Net.Sockets.SocketException (0x80004005): Only one usage of each socket 
address (protocol/network address/port) is normally permitted
   at System.Net.Sockets.Socket.DoBind(EndPoint endPointSnapshot, 
      SocketAddress socketAddress)
   at System.Net.Sockets.Socket.Bind(EndPoint localEP)
   at System.ServiceModel.Channels.SocketConnectionListener.Listen()

这是由于防火墙还是其他问题?这是一个非常基础的服务,终点如下:net.tcp://localhost:8523/CalculatorService

这里是配置文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <system.web>
    <compilation debug="true" />
  </system.web>
  <!-- When deploying the service library project, the content of the config file must be added to the host's 
  app.config file. System.Configuration does not support config files for libraries. -->
  <system.serviceModel>
    <services>
      <service name="Service.CalculatorService">
        <endpoint address="" binding="netTcpBinding" bindingConfiguration=""
          contract="Service.ICalculatorService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="netTcpBinding" bindingConfiguration=""
          contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="net.tcp://localhost:8523/CalculatorService" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="">
          <serviceMetadata httpGetEnabled="false" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

</configuration>

和服务代码:

 public partial class Service1 : ServiceBase
    {
        internal static ServiceHost myServiceHost = null;

        public Service1()
        {
            InitializeComponent();
        }
        protected override void OnStart(string[] args)
        {
            if (myServiceHost != null)
            {
                myServiceHost.Close();
            }
            myServiceHost = new ServiceHost(typeof(CalculatorService));
            myServiceHost.Open();
        }
        protected override void OnStop()
        {
            if (myServiceHost != null)
            {
                myServiceHost.Close();
                myServiceHost = null;
            }
        }

我已经将配置文件从 WCF 服务库处理到 windows 服务项目,它们是相同的。

【问题讨论】:

  • 你的配置是什么样的?
  • 如何启动服务?你能提供它的代码吗?

标签: c# wcf


【解决方案1】:

试试这个代码:

protected override void OnStart(string[] args)
{
    if (myServiceHost != null)
    {
        myServiceHost.Close();
    }
    Uri baseAddress = new Uri("http://localhost:8523/CalculatorService");
    myServiceHost = new ServiceHost(typeof(CalculatorService), baseAddress);
    myServiceHost.Open();
}

还有这个 Web.config

    <?xml version="1.0"?>
<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

【讨论】:

  • 在添加服务引用后,windows防火墙提示它正在阻止WCFSVC并询问我是否要取消阻止它,我对私有网络和家庭网络说是但取消了公共网络选项。这样做之后,我在添加参考时遇到了这个错误:
  • 元数据包含无法解析的引用:'net.tcp://localhost:8523/CalculatorService/mex'。套接字连接被中止。这可能是由于处理您的消息时出错或远程主机超出接收超时,或者是潜在的网络资源问题引起的。本地套接字超时为“00:04:59.6059775”。现有连接被远程主机强行关闭如果当前解决方案中定义了服务,请尝试构建解决方案并再次添加服务引用。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-01-13
相关资源
最近更新 更多