将规则重写为IIS以将HTTPS重定向到HTTP会导致null HttpContext.Request.ContentType

时间:2018-02-19 18:16:11

标签: azure iis asp.net-core azure-web-sites

我正在使用HTTPS redirect site extension for Azure,它有一个像这样的applicationhost.xdt:

<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
    <location path="%XDT_SITENAME%" xdt:Transform="InsertIfMissing" xdt:Locator="Match(path)">
        <system.webServer xdt:Transform="InsertIfMissing">
            <rewrite xdt:Transform="InsertIfMissing">
                <rules xdt:Transform="InsertIfMissing">
                    <rule name="redirect HTTP to HTTPS" enabled="true" stopProcessing="true" xdt:Transform="InsertIfMissing" xdt:Locator="Match(name)">
                        <match url="(.*)" />
                        <conditions>
                            <add input="{HTTPS}" pattern="off" ignoreCase="true" />
                            <add input="{WARMUP_REQUEST}" pattern="1" negate="true" />
                        </conditions>
                        <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" appendQueryString="true" redirectType="Permanent" />
                    </rule>
                </rules>
            </rewrite>
        </system.webServer>
    </location>
</configuration>

当邮递员发送到HTTP而不是HTTPS时,我null获得HttpContext.Request.ContentType,上述内容生效。

我用这样的中间件测试如下:

public class TestMiddleware
{
    readonly RequestDelegate _next;

    public TestMiddleware(RequestDelegate next)
    {
        if (next == null) throw new ArgumentNullException(nameof(next));
        _next = next;
    }

    public async Task Invoke(HttpContext httpContext)
    {
        if (httpContext == null)
        {
            throw new ArgumentNullException(nameof(httpContext));
        }

        var requestContentType = httpContext.Request.ContentType;
        await httpContext.Response.WriteAsync($"requestContentType: {requestContentType}");
    }
} 

我宁愿继续在IIS中处理HTTP重定向,而不是.Net Core的常见中间件解决方案。

是否有人知道要添加到applicationhost.xdt的参数来解决?

更新1 :为清晰起见:

当我调用HTTP并重定向到HTTPS时,此问题仅重现

相反,当我使用HTTPS来电时,我会得到预期的Request.ContentType结果。

使用此Answer below中提供的解决方案,我得到了相同的行为。我不再确定解决方案是否会被编辑 applicationhost.xdt。也许我需要以另一种方式获得Request.ContentType

1 个答案:

答案 0 :(得分:2)

请注意,现在有一种更简单的方法可以将http流量重定向到https:在自定义域下,只需将仅HTTPS 设置为开启。那么您不需要任何站点扩展或xdt文件。

有关详细信息,请参阅this post