Diego
Diego

Reputation: 36146

deploying reports to report server

I configured SSRS 2008 on a remote server. I can access the report manager from my local machine using http://SERVER_NAME/Reports_INSTANCE_NAME

problem is that when I try to deploy a report from BIDS, I get the "reporting services login" dialog box that asks me for user and password. I try my AD user and it doesnt work.

I already added myself to all possible roles, including System Administrator.

I saw online that the problem maybe with the IIS website that must be configured to allow anonymous access. That's fine, but where can I configure that since SSRS2008 doesn't create the websites on IIS anymore (also read that online) and I don't seem to have this possibility using the Reports Service Configuration Manager

Upvotes: 1

Views: 1412

Answers (2)

Darren
Darren

Reputation: 70728

In your report configuration file, try removing the RSWIndowsNegotiate from the Authentication tag:

<Authentication>
    <AuthenticationTypes>
         <RSWindowsNegotiate />
    </AuthenticationTypes>
   <EnableAuthPersistence>true</EnableAuthPersistence>
</Authentication>

Upvotes: 0

Bill Anton
Bill Anton

Reputation: 2970

Take a look at the link below...it's in reference to 2008 CTP, but there are still some items to check in your setup... http://blogs.msdn.com/b/lukaszp/archive/2008/03/26/solving-the-reporting-services-login-issue-in-the-february-ctp-of-sql-server-2008.aspx

Similar issue / resolution here as well... Repeated Reporting Services Login issue when deploying through BIDS to a remote server

Upvotes: 1

Related Questions