4

我有一个 MVC5/WebAPI2 应用程序,自从我创建 Web 项目以来,它就启用了 Application Insights。

返回对象(例如字符串、模型对象)的 WebApi 方法按预期返回 - 序列化为 JSON 或 XML。

 public class TestController : ApiController
{
    [HttpGet]
    [AllowAnonymous]
    async public Task<HttpResponseMessage> ReadString(int id) {

        HttpResponseMessage response = Request.CreateResponse();

        string str;
        using (HttpClient client = new HttpClient()) {
            Uri uri = new Uri("http://someurl.com/resource.rss");
            str = await client.GetStringAsync(uri);
        }

        response.Content = new StringContent(str);
        response.Content.Headers.ContentLength = str.Length;

        return response;
    }
}

当我创建一个返回 HttpResponseMessage 的操作时,我注意到浏览器中有一个奇怪的行为(用 Chrome 和 IE 测试过)。具体来说,我的内容已返回到浏览器,但“忙碌”指示器从未停止旋转,直到我点击停止按钮或停止 Web 服务器 (Visual Studio 2013)。

我已验证上述方法在没有 Application Insights 的 Web 应用程序中按预期工作。具体来说,一旦数据返回给浏览器,响应就结束了。当使用 Application Insights 将以下方法添加到新创建的应用程序时,会遇到前面描述的行为。

有什么想法吗?

4

1 回答 1

0

这是由NullReferenceException在 ASP.NET 请求管道中引发的。Microsoft.ApplictionInsights.Web 包正在处理触发问题的HttpApplication.PreSendRequestHeaders事件。在即将发布的 0.17 版本中,我们已更改 Application Insights 代码以不再处理此事件,您应该不会再看到此问题。

于 2015-05-20T20:22:40.420 回答