AppPool Problème d'Autorisation à l'Accès de Serveur de Rapports

J'ai un Serveur SQL server 2008 R2 Serveur de Rapports en cours d'exécution sur une machine Windows 7 ainsi que d'un ASP.NET application. L'ASP.NET l'application effectue une requête sur le Serveur de Rapports pour afficher une liste de rapports, de rendre des rapports, etc. Mon ASP.NET application avec succès obtient la liste des rapports, mais quand il essaye de rendre un rapport que j'obtiens l'erreur suivante:

The permissions granted to user 'IIS APPPOOL\DefaultAppPool' are insufficient for performing this operation. (rsAccessDenied)

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: Microsoft.Reporting.WebForms.ReportServerException: The permissions granted to user 'IIS APPPOOL\DefaultAppPool' are insufficient for performing this operation. (rsAccessDenied)

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace: 

[ReportServerException: The permissions granted to user 'IIS APPPOOL\DefaultAppPool' are insufficient for performing this operation. (rsAccessDenied)]
Microsoft.Reporting.WebForms.ServerReportSoapProxy.OnSoapException(SoapException e) +89
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.ProxyMethodInvocation.Execute(RSExecutionConnection connection, ProxyMethod`1 initialMethod, ProxyMethod`1 retryMethod) +404
Microsoft.Reporting.WebForms.Internal.Soap.ReportingServices2005.Execution.RSExecutionConnection.LoadReport(String Report, String HistoryID) +180
Microsoft.Reporting.WebForms.ServerReport.EnsureExecutionSession() +79
Microsoft.Reporting.WebForms.ServerReport.GetParameters() +54

Remarque: Cette même base de code a bien fonctionné sur plusieurs ordinateurs exécutant Windows 7 et Windows Server 2008. Iv'e essayé beaucoup de choses différentes basées sur des recherches sur le web mais je n'ai pas trouvé une solution. Aucune information sur ce serait grandement apprécié.

avez-vous fait en sorte que le pool d'applications de l'Identité, de 'IIS APPPOOL\DefaultAppPool" a accès au serveur de rapports. Il doit avoir au moins accès au navigateur
Ça m'a aidé. Si vous n'avez pas l'esprit, je vais mettre que comme une réponse de sorte qu'il est visible.
Pour un rapide changement temporaire, j'ai été capable de faire cela. J'ai vu cette erreur lors du débogage dans Visual Studio. J'ai remarqué que mon projet de propriétés > > serveurs, avait le choix "Utiliser IIS Local Wev server". J'ai l'habitude de le faire pour reproduire l'environnement de production. Commutation à "l'Utilisation Serveur de Développement Visual Studio' m'a permis de déboguer le rapport.

OriginalL'auteur | 2012-06-11