一般情况下,Reporting Services都是使用Web网站的默认端口80,最近有个项目由于原因特殊(具体原因就不细说了),不能使用80端口,需要通过防火墙映射端口过来。
         由于端口发生变化,导致无法通过地址加端口的方式访问报表。后来通过修改一个配置文件 RSWebApplication.config 就OK了,修改 ReportServerUrl 节点,追加端口号。
 1Reporting services 不使用默认端口80的解决办法<Configuration>
 2Reporting services 不使用默认端口80的解决办法    <UI>
 3Reporting services 不使用默认端口80的解决办法        <ReportServerUrl>http://192.168.1.212:188/ReportServer</ReportServerUrl>
 4Reporting services 不使用默认端口80的解决办法    </UI>
 5Reporting services 不使用默认端口80的解决办法    <Extensions>
 6Reporting services 不使用默认端口80的解决办法        <DeliveryUI>
 7Reporting services 不使用默认端口80的解决办法            <Extension Name="Report Server Email" Type="Microsoft.ReportingServices.EmailDeliveryProvider.EmailDeliveryProviderControl,ReportingServicesEmailDeliveryProvider">
 8Reporting services 不使用默认端口80的解决办法                <DefaultDeliveryExtension>True</DefaultDeliveryExtension>
 9Reporting services 不使用默认端口80的解决办法                <Configuration>
10Reporting services 不使用默认端口80的解决办法                    <RSEmailDPConfiguration>
11Reporting services 不使用默认端口80的解决办法                        <DefaultRenderingExtension>MHTML</DefaultRenderingExtension>
12Reporting services 不使用默认端口80的解决办法                    </RSEmailDPConfiguration>
13Reporting services 不使用默认端口80的解决办法                </Configuration>
14Reporting services 不使用默认端口80的解决办法            </Extension>
15Reporting services 不使用默认端口80的解决办法            <Extension Name="Report Server FileShare" Type="Microsoft.ReportingServices.FileShareDeliveryProvider.FileShareUIControl,ReportingServicesFileShareDeliveryProvider">
16Reporting services 不使用默认端口80的解决办法                <Configuration>
17Reporting services 不使用默认端口80的解决办法                    <FileShare>
18Reporting services 不使用默认端口80的解决办法                        <DefaultRenderingExtension>MHTML</DefaultRenderingExtension>
19Reporting services 不使用默认端口80的解决办法                    </FileShare>
20Reporting services 不使用默认端口80的解决办法                </Configuration>
21Reporting services 不使用默认端口80的解决办法            </Extension>
22Reporting services 不使用默认端口80的解决办法        </DeliveryUI>
23Reporting services 不使用默认端口80的解决办法    </Extensions>
24Reporting services 不使用默认端口80的解决办法    <Add Key="MaxActiveReqForOneUser" Value="20"/>
25Reporting services 不使用默认端口80的解决办法    <Add Key="DisplayErrorLink" Value="true"/>
26Reporting services 不使用默认端口80的解决办法</Configuration>
27Reporting services 不使用默认端口80的解决办法

相关文章:

  • 2021-10-20
  • 2022-12-23
  • 2021-12-05
  • 2021-07-01
  • 2021-05-07
  • 2022-12-23
  • 2022-02-09
猜你喜欢
  • 2021-11-28
  • 2022-12-23
  • 2021-04-02
  • 2021-11-28
  • 2021-11-21
相关资源
相似解决方案