Description
After you successfully publish a dashboard, you receive an HTTP status 401 when you try to view the dashboard in Flowtime.
Cause
Identity impersonation does not work with SSRS.
Affected Versions
7.7-7.10
Solution
Add the following location settings to the Flowtime web.config file, and replace "SitePages" with the library name or the path to where you publish the dashboards.
<location path="Reserved.ReportViewerWebControl.axd">
<system.web>
<identity impersonate="false" />
</system.web>
</location>
<location path="SitePages">
<system.web>
<identity impersonate="false" />
</system.web>
</location>