WCF单一服务实现,多种行为。可能

时间:2012-01-15 20:47:16

标签: wcf

我有一个IIS7托管服务,我需要向两个不同的客户端公开。对于其中一个客户端,我需要强制执行比另一个更严格的限制行为。

这意味着我需要定义两个标签,因为这些只能从标签中引用,那么我还需要其中两个?

我已经定义了以下web.config。问题是,当我尝试浏览任一服务以便我可以提取元数据时,我收到以下错误:

Parser Error Message: A child element named 'service' with same key already exists at the same configuration scope.
Collection elements must be unique within the same configuration scope (e.g. the same application.config file). Duplicate key value:  'WCFTwoEndpoints.Calculate'.

我是以正确的方式来做这件事的吗?

<system.serviceModel>
    <services>
      <service name="WCFTwoEndpoints.Calculate" behaviorConfiguration ="NotThrottled">
        <endpoint address="http://localhost/WCFTwoEndpoints/Calculate.svc"
          binding="wsHttpBinding" bindingConfiguration="" name="Calculator"
          contract="WCFTwoEndpoints.ICalculate" />
        <endpoint binding="mexHttpBinding" name="mex" contract="IMetadataExchange" />
      </service>
      <service name="WCFTwoEndpoints.Calculate" behaviorConfiguration ="Throttled">
        <endpoint address="http://localhost/WCFTwoEndpoints/ThrottledCalculate.svc"
          binding="wsHttpBinding" bindingConfiguration="" name="ThrottledCalculator"
          contract="WCFTwoEndpoints.ICalculate" />
        <endpoint binding="mexHttpBinding" name="mex" contract="IMetadataExchange" />
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="NotThrottled">
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="Throttled">
          <serviceMetadata httpGetEnabled="true" />
          <serviceThrottling maxConcurrentCalls="19" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>

1 个答案:

答案 0 :(得分:7)

您有点卡住,因为密钥的名称必须与服务类的名称完全匹配。

我能想到的唯一方法就是创建一个继承自WCFTwoEndpoints.Calculate的新类。然后你会有一个不同的名字。虽然这不是很好。

我想如果你问WCF设计师他们为什么这样设计它们,他们就会说服务器应该独立于客户端。你想要的不是单一的服务;但是两个不同的独立服务恰好有一些共同的实现。从客户的角度来看,它们不会像单一服务那样。