繁体   English   中英

使用Silverlight客户端的WCF服务

[英]Silverlight client consuming WCF service

请耐心等待,因为我是WCF服务/ Windows服务的新手。 我创建了Windows服务中托管的WCF服务。 我想通过TCP在Silverlight浏览器中的应用程序中使用该WCF服务。 下面是Silverlight中访问WCF服务的代码片段:

        var messageEncoding = new BinaryMessageEncodingBindingElement();
        var tcpTransport = new TcpTransportBindingElement();
        var binding = new CustomBinding(messageEncoding, tcpTransport);

        // Create a channel factory for the service endpoint configured with the custom binding.
        var cf = new ChannelFactory<ICalcService>(binding, new EndpointAddress("net.tcp://192.168.2.104:4508"));

        // Open the channel.
        ICalcService channel = cf.CreateChannel();

        // Invoke the method asynchronously.
        channel.BeginAdd(9, 5, AddCallback, channel);

    private void AddCallback(IAsyncResult asyncResult)
    {
        try
        {
            double endAdd = ((ICalcService) asyncResult.AsyncState).EndAdd(asyncResult);
        }
        catch (Exception exception)
        {
            throw exception;
        }
    }

该代码有时可以正常工作,但由于某些原因,它通常会引发臭名昭著的System.ServiceModel.CommunicationException并显示以下消息:

Could not connect to net.tcp://192.168.2.104:4508/. The connection attempt lasted for a time span of 00:00:00.1010058. TCP error code 10013: An attempt was made to access a socket in a way forbidden by its access permissions.. This could be due to attempting to access a service in a cross-domain way while the service is not configured for cross-domain access. You may need to contact the owner of the service to expose a sockets cross-domain policy over HTTP and host the service in the allowed sockets port range 4502-4534.

类型System.Net.Sockets.SocketException的innerException说

An attempt was made to access a socket in a way forbidden by its access permissions.

此异常背后的可能原因是什么? 根据到目前为止的调查,我只能找到一个原因: ClientAccessPolicy.xml不正确。 可能还有其他原因吗? 如果您有任何有用的资源,请提供相同的信息。 还有一个问题,如果我想让Windows服务托管的WCF服务被LAN上的其他计算机占用,我必须进行哪些设置? 例如防火墙设置? 我的代码无法访问其他计算机上的WCF服务。 它引发了我上面提到的相同异常。 关于如何摆脱此异常的任何想法?

问题排序.. !! 我必须做以下事情:

1)在Windows服务中创建NetTcpBinding指定了SecurityMode.None

2)在具有高级安全性的Windows防火墙中创建了入站规则 ,以允许在端点地址中指定的端口上进行TCP通信。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM