4

本文所述,在 .net 中,可以使用“地址”0 将 Web 服务绑定到所有 IP 地址。但是,这似乎不适用于 mono(版本 2.10.8.1)。

这是我的示例代码:

客户:

string ipAddressOfTheService = "192.168.0.23";
EndpointAddress address = new EndpointAddress(string.Format("net.tcp://{0}:8081/myService", ipAddressOfTheService));
NetTcpBinding binding = new NetTcpBinding();
ServiceProxy proxy = new ServiceProxy(binding, address);
if(proxy.CheckConnection())
{
    MessageBox.Show("Service is available");
}
else
{
    MessageBox.Show("Service is not available");
}

服务代理:

public class ServiceProxy : ClientBase<IMyService>, IMyService
{
    public ServiceProxy(Binding binding, EndpointAddress address)
        : base(binding, address)
    {
    }

    public bool CheckConnection()
    {
        bool isConnected = false;
        try
        {
            isConnected = Channel.CheckConnection();
        }
        catch (Exception)
        {
        }
        return isConnected;
    }
}

我的服务:

[ServiceContract]
public interface IMyService
{
    [OperationContract]
    bool CheckConnection();
}

我的服务:

class MyService : IMyService
{
    public bool CheckConnection()
    {
        Console.WriteLine("Check requested!");
        return true;
    }
}

服务主机:

class MyServiceHost
{
    static void Main(string[] args)
    {
        Uri baseAddress = new Uri(string.Format("net.tcp://0:8081/myService");
        using (ServiceHost host = new ServiceHost(typeof(MonitoringService), baseAddress))
        {
            NetTcpBinding binding = new NetTcpBinding();
            binding.Security.Mode = SecurityMode.None;

            host.AddServiceEndpoint(typeof(IMyService), binding, baseAddress);
            host.Open();
            Console.WriteLine("The service is ready at {0}", baseAddress);
            Console.WriteLine("Press <Enter> to stop the service.");
            Console.ReadLine();
            host.Close();
        }
    }
}

如果我使用 .net 在 Windows PC 上运行此(服务和客户端),一切正常。
在我的 Linux 机器(Raspberry Pi,Debian soft-float)上,服务启动没有任何问题,但是客户端无法连接。
如果我使用其 IP 地址而不是“0”地址托管服务,则一切正常。

这只是单声道中的另一个错误还是我必须绑定到任何其他 IP 地址而不是 0?如果这是单声道中的错误,是否有任何解决方法?

(顺便说一句,我仍在寻找解决 mono/net.tcp 端口共享问题的解决方法,如果有人可以在这里提供帮助 -> net.tcp 端口共享和 mono

4

2 回答 2

0

尝试使用+or*而不是0绑定到所有地址。

编辑:或尝试0.0.0.0

Edit2:看起来像 Mono 中的一个错误。您可以在https://bugzilla.xamarin.com/index.cgi报告它

于 2013-04-17T09:47:05.473 回答
0

我在 Ubuntu Server 16.04 LTS 和 Mono JIT 编译器版本 5.0.1.1(2017-02/5077205 Thu May 25 09:19:18 UTC 2017)中遇到了类似的问题。

我通过在中添加以下行来解决它/etc/hosts

0.0.0.0 IP4Any

然后当然,将服务绑定到IP4Any.

于 2017-07-26T04:03:54.190 回答