我们正在开发一个工作中的 ASP.NET 应用程序,该应用程序使用带有 PivotViewer 的即时收集服务器代码。使用纯 http 一切正常。但是,ASP.NET 应用程序需要用户登录,这意味着如果我们使用 httpS(SSL)会更好。
我们需要在托管我们应用程序的服务器上安装 Microsoft URL Rewrite Module http://www.iis.net/download/URLRewrite 。我们还在 web.config 中添加了以下内容以使自动 80 -> 443 重定向工作
在节之后,这不能去其他任何地方,添加以下代码:
<rewrite>
<rules>
<rule name="HTTP to HTTPS redirect" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}/{R:1}" />
</rule>
</rules>
</rewrite>
我们没有 Web 服务,没有 WCF 服务,没有 ASMX 服务。
但是,当我们使用 httpS (SSL) 部署应用程序时,使用 PivotViewer 的即时收集服务器代码无法显示任何内容。没有错误。它只是无法显示任何内容。
请问是否有人在使用 httpS (SSL) 的 PivotViewer 的即时收集服务器代码方面遇到过这样的问题?