尝试从Silverlight 3调用WCF服务时,我收到了一个非常无用的CommunicationException。异常的消息是“远程服务器返回错误:NotFound”。每个内部异常都鹦鹉相同的消息。我的设置是否存在可能导致此问题的问题?
这是我的设置。 WCF服务托管在.NET 4.0平台上运行的Windows服务中。它有三个端点:
这是整个system.serviceModel部分:
<system.serviceModel>
<extensions>
<bindingExtensions>
<add name="pollingDuplexHttpBinding" type="System.ServiceModel.Configuration.PollingDuplexHttpBindingCollectionElement, System.ServiceModel.PollingDuplex, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</bindingExtensions>
</extensions>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="PolicyProviderBehavior">
<webHttp/>
</behavior>
</endpointBehaviors>
</behaviors>
<services>
<service name="RoboTrader.TheFloor.DashboardService">
<endpoint address="" binding="webHttpBinding"
behaviorConfiguration="PolicyProviderBehavior"
contract="RoboTrader.DashboardService.IPolicyProvider"/>
<endpoint address="DashboardService" binding="pollingDuplexHttpBinding"
contract="RoboTrader.DashboardService.IDashboardService"/>
<endpoint address="DashboardService/mex" binding="mexHttpBinding"
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8732/" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
在Silverlight客户端代码中,我添加了一个服务引用,这看起来效果很好。客户端按预期获取服务上的跨域策略。但是,当我调用主DashboardService方法时,我得到CommunicationException,并且从未到达我的服务器端方法中的断点。这是通过添加服务引用生成的Silverlight ClientConfig文件:
<system.serviceModel>
<bindings>
<customBinding>
<binding name="PollingDuplexHttpBinding_IDashboardService">
<binaryMessageEncoding />
<httpTransport maxReceivedMessageSize="2147483647"
maxBufferSize="2147483647" />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://localhost:8732/DashboardService"
binding="customBinding"
bindingConfiguration="PollingDuplexHttpBinding_IDashboardService"
contract="Service.IDashboardService"
name="PollingDuplexHttpBinding_IDashboardService" />
</client>
</system.serviceModel>
此设置是否有任何问题,或者我需要做些什么来使轮询双工HTTP绑定工作?或者您至少知道如何获得有关问题的更多信息?
修改
我只是尝试通过代码设置客户端和服务器绑定,看看它是否会有所帮助,但我仍然得到相同的异常。这是服务器代码:
var dboardService = new DashboardService();
ServiceHost host = new ServiceHost(dboardService);
host.AddServiceEndpoint(
typeof(IDashboardService),
new CustomBinding(
new PollingDuplexBindingElement(),
new BinaryMessageEncodingBindingElement(),
new HttpTransportBindingElement()),
"DashboardService");
host.Open();
这是客户端代码:
private IDashboardService _svc = new DashboardServiceClient(
new PollingDuplexHttpBinding(),
new EndpointAddress("http://localhost:8732/DashboardService"));
编辑2:
我尝试将客户端代码更改为此,但同样的问题出现了:
private IDashboardService _svc = new DashboardServiceClient(
new CustomBinding(
new PollingDuplexBindingElement(),
new BinaryMessageEncodingBindingElement(),
new HttpTransportBindingElement()),
new EndpointAddress("http://localhost:8732/DashboardService"));
答案 0 :(得分:1)
你一定是在开玩笑吧!我找到了为什么这不适用于MSDN文章Network Security Access Restrictions in Silverlight:
的原因使用套接字类的另一个限制是允许网络应用程序连接的目标端口范围必须在4502-4534范围内。“
将端口号更改为4505后,从Silverlight发出请求后达到了服务器代码。
答案 1 :(得分:0)
尝试通过代码创建端点,与您现在完成的方式完全相同。 但是在客户端创建代理就像这样。
CustomBinding binding = new CustomBinding(
new PollingDuplexBindingElement(),
new BinaryMessageEncodingBindingElement(),
new HttpTransportBindingElement());
private IDashboardService _svc = new DashboardServiceClient(binding,
new EndpointAddress("http://localhost:8732/DashboardService"));