为什么我在返回可观察集合时出现此超时错误

本文关键字:超时 错误 集合 返回 观察 为什么 | 更新日期: 2023-09-27 18:34:28

我有一个 Silverlight 应用程序,它正在从我网站上的服务中获取项目列表。 我将其作为具有以下函数的可观察集合传递:

public ObservableCollection<Dictionary<string, object>> GetItems(string transetDocId)
    {
                    ObservableCollection<Dictionary<string, object>> result = new ObservableCollection<Dictionary<string, object>>();
            foreach (DataRow dr in ((DataTable)HttpContext.Current.Session["ItemDataTable"]).Rows)
            {
                Dictionary<string, object> tempD = new Dictionary<string, object>();
                foreach (DataColumn dc in ((DataTable)HttpContext.Current.Session["ItemDataTable"]).Columns)
                    tempD.Add(dc.ColumnName, dr[dc.ColumnName]);
                result.Add(tempD);
            }
            return result;
        }

一切都很好。 现在,由于我能想到的任何更改,它已开始返回以下错误。

对"http://www.example.com/Services/Example.svc"的 HTTP 请求已超过分配的超时。分配给此操作的时间可能是较长超时的一部分。

我已经逐步完成了代码。 我正在客户端中触发GetItemsAsync((方法。 服务看到调用,创建结果并返回它。但是 GetChecksCompleted(( 方法永远不会被命中(是的,我正在添加一个事件处理程序(。几分钟后,我收到错误。

我尝试修改代码,使其返回一个长逗号/分号/管道分隔的字符串,而不是可观察的集合,并且一切运行良好。

为什么可观察集合不起作用?

更多信息:我得到的错误实际上发生在生成的文件 Reference 中.cs在 return 语句之前的行中:

public System.Collections.ObjectModel.ObservableCollection<System.Collections.Generic.Dictionary<string, object>> EndGetItems(System.IAsyncResult result) {
                object[] _args = new object[0];
                System.Collections.ObjectModel.ObservableCollection<System.Collections.Generic.Dictionary<string, object>> _result = ((System.Collections.ObjectModel.ObservableCollection<System.Collections.Generic.Dictionary<string, object>>)(base.EndInvoke("GetItems", _args, result)));
                return _result;
            }

为什么我在返回可观察集合时出现此超时错误

我认为当返回的数据大小超过大小限制时可能会发生这种情况。尝试只返回一个元素而不是所有列表,以确保它不是原因。如果是 - 在配置文件中设置所需的最大缓冲区大小。

发布您的 web.config 可能会有所帮助。

有几种可能性:

  1. 也许您有太多数据要返回。在服务器端放置一个断点,看看你在那里有多少行。

  2. 实际上,您不必返回 ObservableCollection。WCF 将返回列表,由您的客户将其转换为可观察集合。

您可以更改客户端超时。

   using System.ServiceModel.DomainServices.Client;
   /// <summary>
   /// Utility class for changing a domain context's WCF endpoint's
   /// SendTimeout. 
   /// </summary>
   public static class WcfTimeoutUtility
   {
    /// <summary>
    /// Changes the WCF endpoint SendTimeout for the specified domain
    /// context. 
    /// </summary>
    /// <param name="context">The domain context to modify.</param>
    /// <param name="sendTimeout">The new timeout value.</param>
    public static void ChangeWcfSendTimeout(DomainContext context, 
                                            TimeSpan sendTimeout)
    {
      PropertyInfo channelFactoryProperty =
        context.DomainClient.GetType().GetProperty("ChannelFactory");
      if (channelFactoryProperty == null)
      {
        throw new InvalidOperationException(
          "There is no 'ChannelFactory' property on the DomainClient.");
      }
      ChannelFactory factory = (ChannelFactory)
        channelFactoryProperty.GetValue(context.DomainClient, null);
      factory.Endpoint.Binding.SendTimeout = sendTimeout;
    }
   }

将长时间运行的操作的域上下文和发送超时的新值传递给 ChangeWcfSendTimeout 方法,您就很好了。使用终结点后无法更改绑定,因此调用此方法的最佳位置是在域上下文的部分 OnCreated 方法中,如下所示:

namespace SampleNamespace.Web.Services
{
  public partial class MyDomainContext
  {
    partial void OnCreated()
    {
      TimeSpan tenMinutes = new TimeSpan(0, 10, 0);
      WcfTimeoutUtility.ChangeWcfSendTimeout(this, tenMinutes);
    }
  }
}

资料来源:凯尔·麦克伦南 [MSFT]

我想你必须处理你的客户端连接。有连接池,连接数量有限。我记得,当所有连接都在使用中时,尝试建立新连接失败。只需将您的频道包装为"使用"语句即可。

问题实际上出在某些数据上。 某些列中存在 DBNull 值,这在反序列化期间造成了问题。 它抛出的错误消息完全关闭了。

启用跟踪后,我能够弄清楚发生了什么,如下所述:http://msdn.microsoft.com/en-us/library/ms733025.aspx

感谢 anatoliiG 让我朝着正确的方向前进。