WCF在web.config中设置不同的文化端点

时间:2011-11-10 05:55:18

标签: wcf localization endpointbehavior

我有一个WCF服务,我需要针对一些不同的文化进行本地化,主要是提供不同语言的错误和响应消息。我不是依赖于从请求标题中解析某些内容,而是倾向于为每种支持文化提供不同的端点。例如,我将使用不同的URL:

http://server/mycompany-rest/v1.0/service.svc
http://server/mycompany-rest/v1.0/service.svc/fr
http://server/mycompany-rest/v1.0/service.svc/cn

我认为为了使这种方法可行,我需要能够在我的web.config中按照以下方式配置它:

<system.serviceModel>
  <services>
    <service name="MyCompany.Service.Rest.SomeService">
      <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
      <endpoint address="" binding="webHttpBinding" behaviorConfiguration="WebBehavior" contract="MyCompany.Service.Rest.ISomeService"/>
      <endpoint address="fr" binding="webHttpBinding" behaviorConfiguration="WebBehaviorFrench" contract="MyCompany.Service.Rest.ISomeService"/>
      <endpoint address="cn" binding="webHttpBinding" behaviorConfiguration="WebBehaviorChinese" contract="MyCompany.Service.Rest.ISomeService"/>
    </service>
  </services>
  <behaviors>
    <serviceBehaviors>
      <behavior>
        <serviceMetadata httpGetEnabled="true"/>
        <serviceDebug includeExceptionDetailInFaults="false"/>
      </behavior>
    </serviceBehaviors>
    <endpointBehaviors>
      <behavior name="WebBehavior">
        <webHttp/>
      </behavior>
      <behavior name="WebBehaviorFrench">
        <webHttp/>
        <culture value="fr" />
      </behavior>
      <behavior name="WebBehaviorChinese">
        <webHttp/>
        <culture value="zh-cn" />
      </behavior>
    </endpointBehaviors>
  </behaviors>
  <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>

我意识到端点行为没有文化元素,但是这种方法对于自定义行为是否可行?或者有更好的方法吗?

1 个答案:

答案 0 :(得分:0)

关于在此处使用不同的WCF端点进行类似的讨论:

http://geekswithblogs.net/dlanorok/archive/2007/07/18/Dynamic-Configuration-for-WCF-Service-Base-Address.aspx

这似乎只是关于服务器配置......客户端仍然必须明确选择以文化命名的端点。

我的问题更为笼统......有没有办法根据OperationContext等动态选择端点...