It looks like Reporting Services is trying to connect to SQL Server using Windows Authentication. When you try this from anywhere other then the RS server, this will require Account Delegation in order for the SQL Server to trust the windows account credentials which the RS server is passing on to it. This is often problematic to set up as it requires (from memory) kerberos authentication, several settings on the server Active Directory accounts (for both the server accounts and the user account), and is not usable if your users and servers are in different AD forests.
Probably the easiest solution for you would be to create a SQL login on the SQL Server (which should be a member of the RSExecRole role in the ReportServer, ReportServerTempDB, master and msdb databases), and then use RSConfig.exe on the RS Server to tell Reporting Services to always use the new SQL login, instead of Windows Authentication. The syntax of rsconfig is:
RSConfig -c -s Server name -d Reporting Services database name -a Sql|Windows -u User name -p User password
Main Topics
Browse All Topics





by: EugeneZPosted on 2008-03-14 at 17:01:55ID: 21130622
try to add 'NT AUTHORITY\ANONYMOUS LOGON' to sql server logins
om/en-us/l ibrary/ms1 56305.aspx
Review SRS setup
http://technet.microsoft.c