正如我在对您的问题的评论中提到的那样,我认为您并不真正需要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();
}