1

我在一个 WCF 库中定义了多个服务合同,这些合同托管在 Windows 服务下。这些服务在 Windows 服务配置文件中公开如下:

<services>
  <service behaviorConfiguration="ReportingComponentLibrary.TemplateServiceBehavior"
    name="ReportingComponentLibrary.TemplateService">
    <endpoint address="" binding="wsHttpBinding" contract="ReportingComponentLibrary.ITemplateService" bindingConfiguration="wsHttp" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" ></endpoint>
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8080/ReportingComponentLibrary/TemplateService/" />
      </baseAddresses>
    </host>
  </service>
  <service behaviorConfiguration="ReportingComponentLibrary.TemplateServiceBehavior"
    name="ReportingComponentLibrary.TemplateReportService">
    <endpoint address="" binding="wsHttpBinding" contract="ReportingComponentLibrary.ITemplateReportService" bindingConfiguration="wsHttp" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" ></endpoint>
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8080/ReportingComponentLibrary/TemplateReportService/" />
      </baseAddresses>
    </host>
  </service>
</services>

现在,当我在客户端应用程序中添加服务引用时,

是否可以为上述两项服务仅添加一项服务参考或

我需要为每个服务/服务合同单独引用。

更新:

以下是我的申请详情:

我有三个不同的项目:

  1. WCF 服务库
  2. 用于在 WCF 服务之上托管的 Windows 服务
  3. 客户端 - 用于测试的控制台应用程序

现在,WCF 服务库中的 App.Config 如下:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>     

  <system.serviceModel>
    <bindings>
      <wsHttpBinding>
        <binding name="wsHttp" maxReceivedMessageSize="50000000" maxBufferPoolSize="50000000" messageEncoding="Mtom">
          <readerQuotas maxDepth="500" maxStringContentLength="500000000" maxArrayLength="500000000"
          maxBytesPerRead="500000000" maxNameTableCharCount="500000000" />
        </binding>
      </wsHttpBinding>
    </bindings>

    <services>
      <service behaviorConfiguration="ReportingComponentLibrary.TemplateServiceBehavior"
        name="ReportingComponentLibrary.TemplateService">
        <endpoint address="" binding="wsHttpBinding" contract="ReportingComponentLibrary.ITemplateService" bindingConfiguration="wsHttp" >
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" ></endpoint>
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/ReportingComponentLibrary/TemplateService/" />
          </baseAddresses>
        </host>
      </service>

      <service behaviorConfiguration="ReportingComponentLibrary.TemplateServiceBehavior"
        name="ReportingComponentLibrary.TemplateReportService">
        <endpoint address="" binding="wsHttpBinding" contract="ReportingComponentLibrary.ITemplateReportService" bindingConfiguration="wsHttp" >
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/ReportingComponentLibrary/TemplateReportService/" />
          </baseAddresses>
        </host>
      </service>

    </services>

    <behaviors>
      <serviceBehaviors>
        <behavior name="ReportingComponentLibrary.TemplateServiceBehavior">
          <serviceMetadata httpGetEnabled="True"/>
          <serviceDebug includeExceptionDetailInFaults="True" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
</configuration>

Windows Service 中的 App.Config 同上。

现在在我的客户端应用程序中,我需要使用来自 TemplateService 和 TemplateReportService 的方法。

所以,我总是可以使用两个不同的服务参考:

http://localhost:8080/ReportingComponentLibrary/TemplateService/

http://localhost:8080/ReportingComponentLibrary/TemplateReportService/

这一切都很好。

但是我想知道是否有任何方法(除了您建议的包装解决方法)我只需要添加一个引用,并且我可以从这两个服务中调用方法。

4

2 回答 2

5

就目前而言,我认为这是不可能的,您将需要 2 个服务引用,因为它们都实施单独的合同。假设您可以控制服务代码,您可以实现一种解决方法,您可以创建一个服务包装器,通过指向两个单独的服务来实现这两个合同。这将允许您拥有一个服务参考。关于为什么您希望它们都在一项服务而不是两项服务中是否存在特定问题?

编辑:这篇博客文章 - Meineck.Net向您展示了如何配置您的服务以实现您所追求的目标,但它再次成为一种解决方法。祝你好运。

于 2009-11-02T13:32:59.363 回答
2

一份服务参考 = 一份服务合同

您的 Windows 服务内部有许多服务,每个服务都有自己的合同。

然而,没有什么能阻止您创建一个包含所有服务功能的单一合同,然后创建一个实现该合同的类,但只是到其他服务的传递层。

于 2009-11-03T13:33:14.657 回答