WCF:Net.TCP多个绑定,相同的端口,不同的IP地址

时间:2009-03-31 21:05:12

标签: wcf wcf-binding net.tcp

我遇到了一个问题。我在WCF有点新意,所以任何帮助都会有很大帮助。

这是我的代码:

public static void StartHosts()
    {
        try
        {
            // Create a new host
            ServiceHost host = new ServiceHost(typeof(ServerTasks));

            List<IPAddress> ips = new List<IPAddress>(Dns.GetHostAddresses(Dns.GetHostName()));
            if (IPAddress.Loopback != null)
                ips.Add(IPAddress.Loopback);

            ips.RemoveAll(i => i.AddressFamily != AddressFamily.InterNetwork);

            foreach (var ip in ips)
            {
                string uri = string.Empty;

                // Formulate the uri for this host
                uri = string.Format(
                    "net.tcp://{0}:{1}/ServerTasks",
                    ip.ToString(),
                    ServerSettings.Instance.TCPListeningPort
                );


                // Add the endpoint binding
                host.AddServiceEndpoint(
                    typeof(ServerTasks),
                    new NetTcpBinding(SecurityMode.Transport) { TransferMode = TransferMode.Streamed },
                    uri
                );

            }



            // Add the meta data publishing
            var smb = host.Description.Behaviors.Find<ServiceMetadataBehavior>();
            if (smb == null)
                smb = new ServiceMetadataBehavior();

            smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
            host.Description.Behaviors.Add(smb);

            host.AddServiceEndpoint(
                ServiceMetadataBehavior.MexContractName,
                MetadataExchangeBindings.CreateMexTcpBinding(),
                "net.tcp://localhost/ServerTasks/mex"
            );

            // Run the host
            host.Open();
        }
        catch (Exception exc)
        {
            DebugLogger.WriteException(exc);
        }
    }

行上会抛出异常:'host.Open();'

例外是:

System.InvalidOperationException 已经存在URI'net.tcp://192.168.1.45:4329 / ServerTasks'的注册。

我要做的是绑定到计算机上的所有网络地址,以便客户端应用程序可以从他们看到的任何网络到达服务。当我运行此代码时,它会找到并尝试为大约5个不同的IP设置绑定,包括127.0.0.1。

192.168.1.45是它尝试绑定的第二个IP。在它抛出异常的时候,我可以看到(使用netstat)程序已经绑定到端口4329上列表中的第一个IP。在异常中提到的地址上没有绑定到端口4329的任何东西。

很抱歉这里没有太多细节,我想简要介绍一下。如果有人需要更多信息我会乐意提供它。

注意:我已经尝试将PortSharingEnabled设置为true,以便在foreach循环中创建NetTcpBinding,但我仍然遇到了同样的错误。

任何帮助或建议都会受到很大的影响!

由于

3 个答案:

答案 0 :(得分:10)

感谢Corazza的信息!

我已经想出如何实现这一目标。我正以错误的方式解决这个问题。

我的最终目标是让服务监听机器上可用的每个IP地址。尝试单独绑定到每个地址是错误的方法。

相反,我只需要将服务绑定到计算机的主机名(而不是“localhost”),WCF会自动侦听所有适配器。

以下是更正后的代码:

public static void StartHosts()
    {
        try
        {
            // Formulate the uri for this host
            string uri = string.Format(
                "net.tcp://{0}:{1}/ServerTasks",
                Dns.GetHostName(),
                ServerSettings.Instance.TCPListeningPort
            );

            // Create a new host
            ServiceHost host = new ServiceHost(typeof(ServerTasks), new Uri(uri));

            // Add the endpoint binding
            host.AddServiceEndpoint(
                typeof(ServerTasks),
                new NetTcpBinding(SecurityMode.Transport) 
                        { 
                            TransferMode = TransferMode.Streamed
                        },
                uri
            );

            // Add the meta data publishing
            var smb = host.Description.Behaviors.Find<ServiceMetadataBehavior>();
            if (smb == null)
                smb = new ServiceMetadataBehavior();

            smb.MetadataExporter.PolicyVersion = PolicyVersion.Policy15;
            host.Description.Behaviors.Add(smb);

            host.AddServiceEndpoint(
                ServiceMetadataBehavior.MexContractName,
                MetadataExchangeBindings.CreateMexTcpBinding(),
                "net.tcp://localhost/ServerTasks/mex"
            );

            // Run the host
            host.Open();
        }
        catch (Exception exc)
        {
            DebugLogger.WriteException(exc);
        }
    }

答案 1 :(得分:2)

梅尔,

虽然我以前从未尝试过这个,但这里有一些我以前听过的样本。您可能希望首先创建绑定对象,然后将相同的实例添加到AddServiceEndpoint方法,这只是一个想法所以您不是每次都创建新的绑定,因为我记得在某处读取netTCPBindings应该是与地址的1:1关系(即使您使用的是不同的地址)。

我认为您不必担心端口共享会打开多个端口。

以下是您可能希望使用多个端口完成的示例。

http://www.aspfree.com/c/a/Windows-Scripting/WCF-and-Bindings/2/

这是在NetTcpBinding上使用端口共享的一个很好的示例。

http://blogs.msdn.com/drnick/archive/2006/08/08/690333.aspx

布莱恩

答案 2 :(得分:1)

看起来我有点晚了:)。但无论如何 - 有一种非常简单的方法可以让Wcf监听所有可用的网络接口&#34; net.tcp://0.0.0.0:8523 / WCFTestService&#34;。