0

我有以下 WCF 客户端代码来使用 WCF 服务:

static void Main(string[] args)
        {
            IService1 vService;
            NetTcpBinding b = new NetTcpBinding();
            b.Security.Mode = SecurityMode.Message;
            b.Security.Message.ClientCredentialType = MessageCredentialType.Windows;

            EndpointAddress vEndPoint = new EndpointAddress("net.tcp://115.127.1.226/myservice/");
            ChannelFactory<IService1> cf = new ChannelFactory<IService1>(b, vEndPoint);

            vService = cf.CreateChannel();
            try
            {
                Console.WriteLine("Result from the system " + vService.HellowWorld());
            }
            catch (Exception ex)
            {
                Console.WriteLine("Error Occured while connection establish to " + vEndPoint.Uri.ToString());
            }
            Console.ReadKey();

        }

当我在本地运行它时,它运行成功。但是当我尝试远程使用我的 WCF 服务时,它发生了一个异常,任何人都建议我如何解决这个问题?

我的异常消息是:

Could not connect to net.tcp://115.127.1.226/myservice/. The connection attempt lasted for a time span of 00:00:21.0282028. TCP error code 10060: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond
115.127.1.226:808.
4

1 回答 1

-1

尝试使用 ServiceBusEnvironment.SystemConnectivity.Mode = ConnectivityMode.Http;

于 2012-10-31T00:47:39.553 回答