Question

On a 2003 server box, with SQL server 2008 installed (ReportServer deployed in IIS mode), I've got a virtual directory within IIS with it's security set to 'windows authentication', with the following html code:

<body>
<h1>test</h1>
<iframe src="/reportserver" witdh="50%" height="50%" />
</body>

From the outside, I've got a first login/pwd box displayed to access the html code, then a second one to display the content of the iframe.

On the same type of server, but with SQL Server 2005, I don't have this issue (i.e. only one login box).

My thought is that the first token should give acces to both the page and the iframe, isn't it?

Any hints on how to setup the reportserver to fix this?

thanks.

Was it helpful?

Solution

I recently had a similar issue. Turned out that Reporting Services for 2008 was installing with SSL enabled by default and I was getting forced redirections to https://localhost/ReportServer. Just mentioning it because it caught me by surprise...

I disabled SSL redirects by setting the SecureConnectionLevel = 0 in the RSReportServer.config file.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top