2

我需要为从 WCF Web 服务返回的大量数据提供导出到 excel 的功能。

加载数据列表的代码如下:

List<resultSet> r = myObject.ReturnResultSet(myWebRequestUrl);  //call to WCF service
myDataList.DataSource = r;
myDataList.DataBind();

我正在使用 Reponse 对象来完成这项工作:

Response.Clear();
Response.Buffer = true;
Response.ContentType = "application/vnd.ms-excel";
Response.AddHeader("Content-Disposition", "attachment; filename=MyExcel.xls");
StringBuilder sb = new StringBuilder();
StringWriter sw = new StringWriter(sb);
HtmlTextWriter tw = new HtmlTextWriter(sw);
myDataList.RenderControl(tw);
Response.Write(sb.ToString());
Response.End();

问题是 WCF 服务因大量数据(约 5000 行)而超时,结果集为空。当我调试服务时,我可以在服务返回结果之前看到保存/打开 Excel 工作表的窗口,因此 Excel 工作表始终为空。请帮我解决这个问题。

编辑添加 - 用于重写 URL 的 WCF 站点的 IHttpModule 被调用两次或三次。这可能是因为 aspnet_wp 回收吗?在这种情况下,我应该在我的应用程序事件日志中看到错误,对吧?但我没有。请帮我解决这个问题。

这是我的自定义 HttpModule: public class CustomHttpModule : IHttpModule { public void Dispose() { }

public void Init(HttpApplication appln) 
{ 
    appln.AuthorizeRequest+= delegate 
    { 
        HttpContext tcontext= HttpContext.Current; 
        string path = tcontext.Request.AppRelativeCurrentExecutionFilePath; 

        int i = path.IndexOf('/', 2); 
        if (i > 0) 
        { 
            string svc = path.Substring(0, i) + ".svc"; 
            string fu = path.Substring(i, path.Length - i); 
            tcontext.RewritePath(svc, fu, tcontext.Request.QueryString.ToString(), false); 
        } 
    }; 
} 

}

我看到 appln.AuthorizeRequest 被调用了两次。我认为这就是为什么我看到操作超时或连接关闭异常的原因。我如何阻止它做两次。我只创建一个请求。

4

2 回答 2

1

您遇到了多种 WCF/IIS 超时和限制中的一种。这个特定的可能是 MaxReceivedMessageSize。默认值为 64 KB。在服务的绑定上配置它。

其他限制是(这些不是所有绑定参数):

  • MaxItemsInObjectGraph (65536)
  • 最大请求长度 (4 MB)
  • 执行超时(90 秒)
  • 客户端上的 sendTimeout(10 分钟)
于 2010-06-12T11:13:00.193 回答
0

Tor 的回应对我有所帮助。我必须将 MaxItemsInObjectGraph 设置为更高的值才能使此异常消失。但是,我在设置这个值时遇到了麻烦,因为我不知道如何设置它以及在哪里设置它。

本文帮助我更多地了解 WCF Rest 服务和限制。实际上对我有用的是为我的服务类设置ServiceBehavior属性。

[ServiceBehavior(MaxItemsInObjectGraph=2147483646)]
public abstract class MyService: IMyService

{等等……}

如果您不担心必须一遍又一遍地更改最大限制,您可能会很高兴在代码中指定它并享受看到它全部工作的乐趣。

于 2010-06-17T00:53:26.607 回答