我可以在WCF服务中使用wsHttpBinding和webHttpBinding吗?

时间:2013-01-14 08:50:33

标签: wcf web-config wcf-binding

我有一个自定义的用户名 - 密码WCF服务,需要由Windows客户端(Winforms应用程序)以及Web客户端(html / aspx页面)调用。我在web.config中有两个端点声明,但为了使其工作,我必须对其中一个进行注释,因此,只有与该未注释端点关联的客户端类型才能访问该服务。如果我取消提交,并评论另一个,其他客户端可以访问它。我无法保留它们,因此我无法使用这两种类型的客户端访问它。

<service behaviorConfiguration="Behavior1" name="BeST.Service.Service">
    <endpoint address="" binding="webHttpBinding" contract="BeST.Service.IService" behaviorConfiguration="EndpBehavior"></endpoint>
    <endpoint address="" binding="wsHttpBinding" bindingConfiguration="Binding1"
     contract="BeST.Service.IService" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost/" />
      </baseAddresses>
    </host>
  </service>

正如代码所示,如​​果我想让这个服务对两个客户端都有效,我需要使用两个端点(在两个端点之上),如果还有另一种方法可以完成它,请帮忙!

1 个答案:

答案 0 :(得分:3)

问题是您为两个端点提供相同的地址。尝试给你的一个端点提供另一个相对地址,它应该可以工作。

<service behaviorConfiguration="Behavior1" name="BeST.Service.Service">
  <endpoint address="web" binding="webHttpBinding" contract="BeST.Service.IService" behaviorConfiguration="EndpBehavior"></endpoint>
  <endpoint address="" binding="wsHttpBinding" bindingConfiguration="Binding1"
    contract="BeST.Service.IService" />
  <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  <host>
    <baseAddresses>
      <add baseAddress="http://localhost/" />
    </baseAddresses>
  </host>
</service>