Mittwoch, 9. April 2008

Reportserver auf IIS mit mehreren IP-Adressen / Reportserver nicht in Defaultwebsite

IP Address Mapping

Reporting Services requires that the default Web site IP address is mapped to (All Unassigned). To verify this setting, open the Default Web Site Properties dialog box in Internet Information Services. The IP address is specified on the Web Site tab.

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/rsinstall/htm/gs_installingrs_v1_8k82.asp

Man kann aber manuell eingreifen ….

In the RSWebApplication.config file in the ReportManager folder for your SQL 2005 Reporting Services instance.

If you 2005 instance is called SQL2005 you will have the block of XML:

<UI>
<ReportServerUrl></ReportServerUrl>
<ReportServerVirtualDirectory>ReportServer$SQL2005</ReportServerVirtualDirectory>
<ReportBuilderTrustLevel>FullTrust</ReportBuilderTrustLevel>
</UI>

If you change this to:

<UI>
<ReportServerUrl>http://<Servername>/ReportServer$SQL2005</ReportServerUrl>
<ReportServerVirtualDirectory></ReportServerVirtualDirectory>
<ReportBuilderTrustLevel>FullTrust</ReportBuilderTrustLevel>
</UI>