2

我们的 WCF 服务遇到了 Azure 的 25 个内部端点的限制。为了与 SOA 原则保持一致,我们的 WCF 服务相当小,通常在我们的系统中每个“名词”一个。我们为每个服务合同定义一个 Azure InternalEndpoint。我们现在想要添加我们的第 26 个 WCF 服务,但由于 25 个端点的限制而不能。我们真的不想仅仅因为这个 Azure 限制就任意开始组合服务合同。

问题:有没有更好的方法来托管不需要每个服务合同一个端点的大量 WCF 服务?

这是一个示例 csdef 文件片段:

<ServiceDefinition name="MyDeployment" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
  <WorkerRole name="MyWorkerRole" vmsize="Small">
    <Endpoints>
      <InternalEndpoint protocol="tcp" name="IUserService" />
      <InternalEndpoint protocol="tcp" name="IArticleService" />
      <InternalEndpoint protocol="tcp" name="IDocumentService" />
      <InternalEndpoint protocol="tcp" name="ICommentingService" />
      <InternalEndpoint protocol="tcp" name="ILocationService" />
      <InternalEndpoint protocol="tcp" name="IAuthorizationService" />
      <InternalEndpoint protocol="tcp" name="IAuthenticationService" />
      <InternalEndpoint protocol="tcp" name="ILoggingService" />
      <InternalEndpoint protocol="tcp" name="IService09" />
      <InternalEndpoint protocol="tcp" name="IService10" />
      <!-- and so on -->
      <InternalEndpoint protocol="tcp" name="IService24" />
      <InternalEndpoint protocol="tcp" name="IService25" />
      <InternalEndpoint protocol="tcp" name="IServiceWeWantToAddButCannot" />
    </Endpoints>
</ServiceDefinition>
4

3 回答 3

0

好吧,如果最终结果是 25 个服务,那么我会说您将 SOA“原则”推得太远了。文件服务?!ILoggingService?!

有一些好的服务不应该作为单独的实体存在,因为它们是支持你的系统的东西,但它们本身并不是服务。我会说你需要改变你的一些服务,然后组合起来像 10 甚至是一个非常大的数字。

像这样的东西:

  • 支持

    • 日志记录
    • 文档
    • 本土化
  • 文章

  • 产品

  • 顾客

    • 验证
    • 授权

类似的东西,只有 4 项服务。我认为您缺少构图方面。

于 2013-04-01T18:57:15.153 回答
0

正如我在对您的问题的评论中提到的那样,我认为您并不真正需要InternalEndpoints您拥有的所有这些。您正在将这些与 WCF 端点一对一配对。这可能是错误的。相反,将它们与您的 WCF 绑定/行为配对(实际上,每个端口一个)。在我们的例子中,我们有大约 250 个不同的 WCF 服务都通过这个端点。这是我们csdef文件中 100% 的端点:

<Endpoints>
  <InputEndpoint name="WcfConnections" protocol="tcp" port="8080" localPort="8080" />
</Endpoints>

(虽然我们使用InputEndpoint而不是InternalEndpoint,但从这个问题的角度来看应该没有区别。)

netTcpBindings在我们的自托管 TCP 服务应用程序中,三个不同的端点使用了该单个端点。我们还有一个 TCP 服务的 Web 应用版本(便于在 IIS 中进行本地开发托管/测试),我们使用的绑定是:

<bindings>
  <netTcpBinding>
    <binding name="A" maxBufferPoolSize="5242880" maxBufferSize="5242880" maxReceivedMessageSize="5242880" listenBacklog="100" maxConnections="1000">
      <readerQuotas maxDepth="256" maxStringContentLength="16384" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
      <security mode="Transport">
        <transport clientCredentialType="Certificate" />
      </security>
    </binding>
    <binding name="B" maxBufferPoolSize="15728640" maxBufferSize="15728640" maxReceivedMessageSize="15728640" listenBacklog="100" maxConnections="1000">
      <!-- 15MB max size -->
      <readerQuotas maxDepth="256" maxStringContentLength="15728640" maxArrayLength="15728640" maxBytesPerRead="204800" maxNameTableCharCount="15728640" />
      <security mode="Transport">
        <transport clientCredentialType="Certificate" />
      </security>
    </binding>
    <binding name="C" maxBufferPoolSize="524288" maxBufferSize="524288" maxReceivedMessageSize="524288" listenBacklog="100" maxConnections="1000">
      <!-- 0.5MB max size -->
      <readerQuotas maxDepth="256" maxStringContentLength="524288" maxArrayLength="524288" maxBytesPerRead="204800" maxNameTableCharCount="524288" />
      <security mode="Transport">
        <transport clientCredentialType="Certificate" />
      </security>
    </binding>
  </netTcpBinding>
</bindings>

最后,只要您愿意在每个端口共享多个服务(除了一些非常高负载的情况,使用适当的自托管应用程序应该没问题),那么您所做的就是不必要的。

也许您的更大问题以及您需要学习提出的问题是,“如何在自托管 WCF 应用程序的单个端口上托管多个服务?” 如果是这种情况,请查看这段代码(注意,endpoint我们在循环中使用的对象只是一个包含每个 WCF 端点的一些关键部分的结构):

// Build up Services
var hosts = new List<ServiceHost>();
foreach (var endpoint in endpoints)
{
    var host = new ServiceHost(endpoint.ServiceType, new Uri(string.Format("net.tcp://{0}:{1}", FullyQualifiedHostName, SharedTcpPortNumber)));
    hosts.Add(host);
    foreach (var behavior in MyBehaviorSettings)
    {
        if (behavior is ServiceDebugBehavior)
            host.Description.Behaviors.Find<ServiceDebugBehavior>().IncludeExceptionDetailInFaults = (behavior as ServiceDebugBehavior).IncludeExceptionDetailInFaults;
        else
            host.Description.Behaviors.Add(behavior);
    }

    if (endpoint.ServiceContract == null)
        throw new Exception();
    if (endpoint.ServiceBinding == null)
        throw new Exception();
    if (endpoint.EndpointUrl == null)
        throw new Exception();
    if (endpoint.ListenUrl == null)
        throw new Exception();

    // Add the endpoint for MyService 
    host.AddServiceEndpoint(endpoint.ServiceContract, endpoint.ServiceBinding, endpoint.EndpointUrl, new Uri(endpoint.ListenUrl));
    host.Open();
}
于 2013-04-01T20:35:07.243 回答
0

WCF 可以在同一个物理端口上托管多个服务。

例如,如果您将服务注册到以下端点:

http://145.12.12.23:1000/

然后您将无法使用相同的端口。

但是,如果您将在末尾添加例如合同名称 - 您可以将服务注册到此类端点:

http://145.12.12.23:1000/A合同

http://145.12.12.23:1000/BContract

http://145.12.12.23:1000/CContract

WCF 将创建将每个 URL 映射到特定主机的代理。

于 2014-10-07T17:27:03.667 回答