WCF SocketException

时间:2012-03-14 21:12:36

标签: c# wcf socketexception

我正在VS2010中开发一个WCF应用程序。当我使用in-IDE调试器来运行主机应用程序和客户端时,一切都按预期工作。

但是,当我手动运行两个可执行文件(转到/ bin / Debug /文件夹)时,我从客户端获得以下异常:

System.Net.Sockets.SocketException:无法建立连接,因为目标计算机主动拒绝它127.0.0.1:8732

奇怪的是,在app.config文件中我指定使用端口5000,而不是8732。

怎么了?提前谢谢。

编辑:这是主机应用程序的app.config:

<?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="WCFServiceLibrary.SavalotServiceObject">
        <endpoint address="" binding="wsHttpBinding" contract="WCFServiceLibrary.ISavalotService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:5000/Design_Time_Addresses/WCFServiceLibrary/SavalotServiceObject/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <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>
  </system.serviceModel>

</configuration>

2 个答案:

答案 0 :(得分:4)

张贴的用户不必通过13条评论

在这种情况下,问题是用户正在运行多项目解决方案。在这种情况下,无论运行哪个项目,其配置文件都很重要。

如果您正在运行 WcfService,则需要包含该服务的项目才能将其web.config文件配置为使用正确的端口。

如果您测试 WcfService,则需要测试项目将其app.config文件配置为使用正确的端口。

这是Web服务新手所犯的常见错误,并且没有什么可羞耻的。

答案 1 :(得分:0)

您是否尝试使用WireShark之类的内容?在两个端点运行它是解决套接字问题的好方法。