WCF - 在http://xxxxx.xxxx/Service1.svc上没有监听端点

时间:2013-06-16 17:57:29

标签: c# wcf http

尝试在WCF服务上调用函数时出现错误:

There was no endpoint listening at http://XXXXXXXXXXX.xxx/Service1.svc that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.

我的WCF服务Web.config

<system.serviceModel>
    <services>
      <service name="Service1" behaviorConfiguration="MyServiceTypeBehaviors">
        <endpoint contract="IService1" binding="mexHttpBinding" address="mex" />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="MyServiceTypeBehaviors">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

WCF客户端app.config

<system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="MetadataExchangeHttpBinding_IService1" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false" />
          <security mode="None">
            <transport clientCredentialType="Windows" proxyCredentialType="None" realm="" />
            <message clientCredentialType="Windows" negotiateServiceCredential="true" />
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://XXXXXXXXXXX.xxx/Service1.svc"
        binding="wsHttpBinding" bindingConfiguration="MetadataExchangeHttpBinding_IService1"
        contract="API.IService1" name="MetadataExchangeHttpBinding_IService1" />
    </client>
  </system.serviceModel>

我尝试了很多设置和配置,但是没有让它工作......有没有人发现你认为我错过了什么?

编辑:我在IIS上托管服务并使用Winform客户端

1 个答案:

答案 0 :(得分:1)

您似乎与服务端点和mex端点混淆。它们是独立的端点。 将服务器上的配置更改为:

 <endpoint contract="IService1" binding="wsHttpBinding" address="" />
 <endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />

然后重新创建代理。