如何配置不同的应用程序实例?我知道您可以参数化ApplicationManifest
和服务Config
包,但是如何在两个不同的应用程序实例中为Web服务指定不同的端口? web服务的端点在ServiceManifest
中定义,不能在afaik参数化。
<Resources>
<Endpoints>
<!-- This endpoint is used by the communication listener to obtain the port on which to
listen. Please note that if your service is partitioned, this port is shared with
replicas of different partitions that are placed in your code. -->
<Endpoint Protocol="http" Name="ServiceEndpoint" Type="Input" Port="80" />
</Endpoints>
</Resources>
&#13;
假设我的应用程序类型MyAppType
包含服务类型MyWebSvcType
。我创建了应用程序类型MyAppTenant1
和MyAppTenant2
的两个实例。如何指定MyAppTenant1
的Web服务侦听端口80,而MyAppTenant2
的Web服务侦听端口81.这是因为它们可能位于同一节点上,因此应该侦听不同的端口。