4

我正在运行 silverlight 客户端版本 4.0.50917.0 和 SDK 版本 4.0.50826.1

我针对 wcf pollingduplex 绑定创建了一个简单的 silverlight 客户端:

网络配置:

<system.serviceModel>
<extensions>
  <bindingExtensions>
    <add name="pollingDuplexHttpBinding"
        type="System.ServiceModel.Configuration.PollingDuplexHttpBindingCollectionElement,System.ServiceModel.PollingDuplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
  </bindingExtensions>
</extensions>
<behaviors>
  <serviceBehaviors>
    <behavior name="sv">
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="true" />
      <serviceThrottling maxConcurrentSessions="2147483647"/>
    </behavior>
  </serviceBehaviors>
</behaviors>

<bindings>
  <!-- Create the polling duplex binding. -->
  <pollingDuplexHttpBinding>
    <binding name="multipleMessagesPerPollPollingDuplexHttpBinding"
             duplexMode="MultipleMessagesPerPoll"
             maxOutputDelay="00:00:01"/>

    <binding name="singleMessagePerPollPollingDuplexHttpBinding"
             maxOutputDelay="00:00:01"/>
  </pollingDuplexHttpBinding>
</bindings>
<services>
  <service behaviorConfiguration="sv" name="Backend.GUIPollingService">
    <endpoint address="" binding="pollingDuplexHttpBinding" bindingConfiguration="singleMessagePerPollPollingDuplexHttpBinding"
      contract="Backend.IGUIPollingService" />
    <endpoint address="mmpp" binding="pollingDuplexHttpBinding" bindingConfiguration="multipleMessagesPerPollPollingDuplexHttpBinding"
      name="multimessage" contract="Backend.IGUIPollingService" />
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  </service>
</services>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />

</system.serviceModel>

我的 silverlight 客户端连接如下:

 string endPointAddress2 = "http://"
          + App.Current.Host.Source.DnsSafeHost
          + ":"
          + App.Current.Host.Source.Port.ToString(CultureInfo.InvariantCulture)
          + "/GUIPollingService.svc/mmpp";
 this.client = new GUIClientProxy.GUIPollingServiceClient(
        new PollingDuplexHttpBinding(PollingDuplexMode.MultipleMessagesPerPoll), 
        new EndpointAddress(endPointAddress2))

我得到了一个内部通道错误的事件处理程序:

client.InnerChannel.Faulted += new EventHandler(InnerChannel_Faulted);

...

void InnerChannel_Faulted(object sender, EventArgs e)
    {
        
        Dispatcher.BeginInvoke(() =>
        { status.Text += "Inner channel Faulted\n\n"
        }
    } 

当使用上面的 Client.InnerChannelFaulted 事件时恰好在1 serverPollTimeout之后发生。(默认 15 秒,通过 Fiddler 验证)

如果我将客户端切换为这样连接:

string endPointAddress2 = "http://"
          + App.Current.Host.Source.DnsSafeHost
          + ":"
          + App.Current.Host.Source.Port.ToString(CultureInfo.InvariantCulture)
          + "/GUIPollingService.svc";
 this.client = new GUIClientProxy.GUIPollingServiceClient(
        new PollingDuplexHttpBinding(), 
        new EndpointAddress(endPointAddress2))

aka 每个民意调查提琴手的单条消息表明,在每次serverPollTimeout新的民意调查开始后并且通道没有故障。

有什么想法吗?

编辑:

我已阅读http://social.msdn.microsoft.com/Forums/en/wcf/thread/1e6aa407-4446-4d4a-8dac-5392250814b8http://forums.silverlight.net/forums/p/200659/468206 .aspx#468206 并且我同意“singleMessagePerPoll”不是一个体面的解决方法。正如您在我的版本中看到的那样,我正在运行最新版本的 SDK 和开发人员运行时。

编辑2:

我刚刚发现,如果我使用 google chrome 作为浏览器而不是 IE8 MultipleMessagesPerPoll 工作正常!对我来说,这闻起来像是运行时与 ie8 的错误?

编辑3:

Silverlight WS 博客上的确认: 链接

4

2 回答 2

3

我用相同的 SDK 和客户端版本确认了示例中的问题。

该问题对其他浏览器也有更多影响:我的印象是 MultipleMessagePerPoll 似乎在它们上也不能正常工作(Fiddler 和 Firebug 显示的东西看起来很像 SingleMessagePerPoll)

但是我可以通过使用客户端网络堆栈(绕过浏览器网络堆栈)使其工作。然而,这个解决方案远非完美,因为在这种情况下必须手动设置 cookie。根据您的应用程序,它可能很烦人或不是问题。

要通过客户端堆栈执行所有 http 请求,请在开始服务调用之前使用它:

HttpWebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);

但是,根据您的需要,您可以更具体一点。

如果有人有更令人满意的答案,我很乐意阅读。如果您有兴趣重现问题,我已经修改了一个旧的 Tomek 示例以在 SL4 上使用 MultipleMessagePerPoll 而不是在 SL3 上使用 SingleMessagePerPoll。

于 2010-11-20T13:25:55.613 回答
1

将 global.asax 添加到托管网站可能会导致此问题。将会话添加到托管站点显然会破坏 wcf 轮询双工服务。我在这个问题上苦苦挣扎了好几天,仅仅从主机网站上删除 global.asax 文件,服务中的挂起就消失了。multiplemessagesperpoll 是一个错误的线索。它工作正常。

有关更多信息,请参见:

新添加的 global.asax 文件如何弄乱我的 WCF 服务

于 2014-02-15T12:07:28.057 回答