我需要为从 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 被调用了两次。我认为这就是为什么我看到操作超时或连接关闭异常的原因。我如何阻止它做两次。我只创建一个请求。