WCF 上的一项服务、多个端点、多个绑定。为啥我无法到达我的端点?

Posted

技术标签:

【中文标题】WCF 上的一项服务、多个端点、多个绑定。为啥我无法到达我的端点?【英文标题】:One service, multiple endpoints, multiple bindings on WCF. Why can't I reach my endpoints?WCF 上的一项服务、多个端点、多个绑定。为什么我无法到达我的端点? 【发布时间】:2011-12-14 13:18:02 【问题描述】:

我有一个由 IIS 运行的 WCF 服务。我想创建两个使用相同服务的不同客户端(WPF 和 WP7)。 WPF 客户端已经在使用wsHttpBindinghttps 使用端点。遗憾的是 WP7 没有 wsHttpBinding,只有 BasicHttpBinding。所以我想我会为这两者公开不同的端点,这样他们就可以访问相同的服务,但使用不同的绑定,什么不是......

这是我在 IIS 上的 Web.config:

<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="TransportSecurity">
        <reliableSession enabled="true" />
          <security mode="TransportWithMessageCredential" >
            <transport clientCredentialType="None"/>
          </security>
        </binding>
      </wsHttpBinding>
      <basicHttpBinding>
        <binding name="BasicTransportSecurity">
           <security mode="Transport">
              <transport clientCredentialType="None"/>
           </security>
         </binding>
      </basicHttpBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="SmartCook2.Server.ISmartCookServiceBehavior">
          <serviceMetadata httpGetEnabled="false" httpsGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
    <services>
      <service behaviorConfiguration="SmartCook2.Server.ISmartCookServiceBehavior"
        name="SmartCook2.Server.SmartCookService">
        <endpoint address="WS" binding="wsHttpBinding" bindingConfiguration="TransportSecurity"
          name="WS" contract="SmartCook2.Server.ISmartCookService" />
        <endpoint address="Basic" binding="basicHttpBinding" bindingConfiguration="BasicTransportSecurity"
          name="Basic" contract="SmartCook2.Server.ISmartCookService" />
        <endpoint address="mex" binding="mexHttpsBinding" name="mex"
          contract="IMetadataExchange" />
      </service>
    </services>
  </system.serviceModel>
 <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>
<connectionStrings>
    <add name="SmartCookDBEntities" connectionString="metadata=res://*/SmartCookContext.csdl|res://*/SmartCookContext.ssdl|res://*/SmartCookContext.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=RENDERBETYAR;initial catalog=SmartCookDB;integrated security=True;pooling=False;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>

</configuration>

现在,如果我做对了,端点应该可以通过以下地址访问:

https://localhost/IISHostedSmartCook/SmartCookService.svc/Basic
https://localhost/IISHostedSmartCook/SmartCookService.svc/WS
https://localhost/IISHostedSmartCook/SmartCookService.svc/mex

如果我在浏览器中查看它们,我什么也得不到。也不例外,但也没有内容。使用基地址(直到 .svc 部分)我得到默认服务页面,我可以访问 wsdl,它是有效的。据我所知,它具有正确的端点、我的服务方法等。

如果我尝试将 ServiceReference 添加到我的 WP7 项目是 Visual Studio,我只能在基地址下看到我的服务(特定端点地址不返回任何内容)。如果我添加它,则生成的类是正确的,只是我无法调用我的任何服务方法,并且我收到错误消息“在此地址没有侦听端点”。 (如果我使用需要端点名称的服务客户端的构造函数,也会发生这种情况。)

我做错了什么?

【问题讨论】:

您是在实际设备上进行测试,还是使用模拟器进行测试?如果您使用设备进行测试,您使用的是 Zune 还是 WPConnect.exe ? 我正在使用模拟器进行测试。 您是否尝试过使用您的网络 IP 而不是 localhost? 请在添加服务参考后显示WF7项目的配置。 【参考方案1】:

查看here了解详细说明。

您需要在endpoints 中指定地址:

  <service behaviorConfiguration="SmartCook2.Server.ISmartCookServiceBehavior"
    name="SmartCook2.Server.SmartCookService">
    <endpoint address="http://localhost/Service.svc/WS" binding="wsHttpBinding" bindingConfiguration="TransportSecurity"
      name="WS" contract="SmartCook2.Server.ISmartCookService" />
    <endpoint address="http://localhost/Service.svc/Basic" binding="basicHttpBinding" bindingConfiguration="BasicTransportSecurity"
      name="Basic" contract="SmartCook2.Server.ISmartCookService" />
    <endpoint address="" binding="mexHttpsBinding" name="mex"
      contract="IMetadataExchange" />
  </service>

【讨论】:

【参考方案2】:
<services>
...
      <endpoint address="mex" binding="mexHttpsBinding" contract="IMetadataExchange" />
         <host>
            <baseAddresses>
               <add baseAddress="https://localhost/IISHostedSmartCook/SmartCookService.svc"/>
            </baseAddresses>
        </host>
   </service>
</services>
...

【讨论】:

【参考方案3】:

您的所有配置都是正确的,如果您检查 wsdl,SOAP:address 属性将具有您指定的位置,即:

https://localhost/IISHostedSmartCook/SmartCookService.svc/Basic
https://localhost/IISHostedSmartCook/SmartCookService.svc/WS
https://localhost/IISHostedSmartCook/SmartCookService.svc/mex

当您在项目中添加引用时,您只需要使用您想要的适当端点,即如果您想使用 basicHttpBinding 然后使用地址为的端点

https://localhost/IISHostedSmartCook/SmartCookService.svc/Basic

当您在 IE 中浏览这些地址时,您不会看到任何绝对正确的内容。为了使其更明智,请将 localhost 替换为您所在的网络上应该可见的机器名称,以便可以通过网络访问服务。

还尝试构建一个 .NET 客户端来调用服务并确保您的服务正常运行。

【讨论】:

当您尝试使用 .Net 客户端访问它时出现什么错误?此外,当您使用基地址添加服务引用时应该没问题,但在客户端配置文件中,客户端部分端点元素中的地址应该具有完整的地址,如上所述【参考方案4】:

我认为您可能需要将端点地址更改为相对位置:

<endpoint address="/WS" 

<endpoint address="/Basic"

mex 地址是特例,不需要更改。

有关详细信息,请参阅 MSDN 文档Specifying an Endpoint Address。

【讨论】:

【参考方案5】:

在这里回答: WCF: Multiple binding configurations for a single service

基本上你不能在同一个 URI 上拥有不同的绑定,正如提到的 Here

您可以在同一个绑定中拥有不同的绑定配置。

【讨论】:

以上是关于WCF 上的一项服务、多个端点、多个绑定。为啥我无法到达我的端点?的主要内容,如果未能解决你的问题,请参考以下文章

WCF 多端点

如何将单个 WCF 服务配置为具有多个 HTTP 和 HTTPS 端点?

具有多个合同的 Mono WCF 休息服务“配置文件中未定义端点”

WCF 多个 Http/Https 端点问题 [重复]

WCF 服务的多个 HTTPS 终结点

WCF 3.5 服务和多个 http 绑定