Http2 PushPromise访问被拒绝的例外

时间:2017-12-26 07:23:12

标签: asp.net-mvc azure http2 azure-web-app-service push-promise

我有以下代码用于为Http2.0客户端启用PushPromise。

public static IHtmlString StyleSheet(this HtmlHelper htmlHelper, string contentPath)
{
    UrlHelper urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);

    htmlHelper.ViewContext.RequestContext.HttpContext.Response.PushPromise(contentPath);

    TagBuilder linkTagBuilder = new TagBuilder("link");
    linkTagBuilder.Attributes.Add("rel", "stylesheet");
    linkTagBuilder.Attributes.Add("href", urlHelper.Content(contentPath));

    return new HtmlString(linkTagBuilder.ToString());
}

直到上周五,这一切都正常,之后我开始获得Access Denied Exception。

我们已经在Azure App服务上托管了我们的网站超过一年了!!

enter image description here

关于为什么在一年后失败的任何想法?

0 个答案:

没有答案