Reporting Services EMail Subscription Error
I have created an email subscription on a report. It works when email contains only the report link, but throws error when including the report. Below is the error log dump:library!WindowsService_51!f14!06/25/2009-23:23:02:: i INFO: Schedule 7b1a2285-4bf8-4636-b6c5-eab7b618ee36 executed at 06/25/2009 23:23:02.schedule!WindowsService_51!f14!06/25/2009-23:23:02:: Creating Time based subscription notification for subscription: f432a0c0-96a3-469a-b84c-c1abd68d640flibrary!WindowsService_51!f14!06/25/2009-23:23:02:: i INFO: Schedule 7b1a2285-4bf8-4636-b6c5-eab7b618ee36 execution completed at 06/25/2009 23:23:02.library!WindowsService_51!bec!06/25/2009-23:23:02:: i INFO: RenderForNewSession('/My Report')library!WindowsService_51!bec!06/25/2009-23:23:02:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details., Internal error;Info: Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException: An internal error occurred on the report server. See the error log for more details. ---> System.Security.SecurityException: That assembly does not allow partially trusted callers. at Microsoft.Samples.ReportingServices.CustomSecurity.Authorization.DeserializeAcl(Byte[] secDesc) at Microsoft.Samples.ReportingServices.CustomSecurity.Authorization.CheckAccess(String userName, IntPtr userToken, Byte[] secDesc, ReportOperation requiredOperation) at Microsoft.ReportingServices.Library.Security.CheckAccess(ItemType catItemType, Byte[] secDesc, ReportOperation rptOper, String reportPath) at Microsoft.ReportingServices.Library.ReportOptionSecurityCheck.Check(Security security, ItemType itemType, Byte[] securityDescriptor, String itemPath) at Microsoft.ReportingServices.Library.SecurityRequirements.CheckAccess(ItemType itemType, Byte[] securityDescriptor, String itemPath) at Microsoft.ReportingServices.Library.DefinitionLoader.GetParameterDefinition(CatalogItemContext itemContext, String historyId, Boolean forRendering, SecurityRequirements requirements) at Microsoft.ReportingServices.Library.ReportParameterDefinition.Load(CatalogItemContext itemContext, String historyId, Boolean forRendering, RSService service, SecurityRequirements requirements) at Microsoft.ReportingServices.Library.RSService.GetReportParameters(ClientRequest session, CatalogItemContext reportContext, Boolean forRendering) at Microsoft.ReportingServices.Library.RSServiceDataProvider.GetParameters(ClientRequest session, CatalogItemContext reportContext) at Microsoft.ReportingServices.Library.RenderForNewSession.GetReportParameters() at Microsoft.ReportingServices.Library.RenderForNewSession.GetReportMetadata() at Microsoft.ReportingServices.Library.RenderForNewSession.get_ExecuteExistingSnapshot() at Microsoft.ReportingServices.Library.RenderForNewSession.GetExecutionStrategy() at Microsoft.ReportingServices.Library.ReportExecutionBase.InternalExecuteReport() at Microsoft.ReportingServices.Library.ReportExecutionBase.Execute() at Microsoft.ReportingServices.Diagnostics.CancelablePhaseBase.ExecuteWrapper()The action that failed was:LinkDemandThe assembly or AppDomain that failed was:Microsoft.Samples.ReportingServices.CustomSecurity, Version=1.0.3443.8641, Culture=neutral, PublicKeyToken=nullThe Zone of the assembly that failed was:MyComputerThe Url of the assembly that failed was:file:///C:/Program Files/Microsoft SQL Server/MSRS10.MSSQLSERVER/Reporting Services/ReportServer/bin/Microsoft.Samples.ReportingServices.CustomSecurity.DLL --- End of inner exception stack trace ---library!WindowsService_51!bec!06/25/2009-23:23:03:: i INFO: Exception InternalCatalogException dumped to: C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\Logfiles flags= ReferencedMemory, AllThreads, SendToWatsonlibrary!WindowsService_51!bec!06/25/2009-23:23:03:: i INFO: Initializing EnableExecutionLogging to 'True' as specified in Server system properties.Your help would be much appreciated.~ Viv ~
June 26th, 2009 10:06am

Have you updated rssrvpolicy.config for CustomSecurity.DLL?
Free Windows Admin Tool Kit Click here and download it now
June 26th, 2009 10:28am

Thanks for posting..Yes indeed, I have added below code in rssrvpolicy.config file:<CodeGroupclass="UnionCodeGroup"version="1"Name="SecurityExtensionCodeGroup"Description="Code group for the sample security extension"PermissionSetName="FullTrust"><IMembershipCondition class="UrlMembershipCondition" version="1" Url="C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\bin\Microsoft.Samples.ReportingServices.CustomSecurity.dll"/></CodeGroup>~ Viv ~
July 2nd, 2009 3:44pm

FYIwhen I use report admin to create Email subscription everything works just fine. This problem occurs specifically for all the other normal user.Please let me know if you require any further info. Waiting for you reply.~ Viv ~
Free Windows Admin Tool Kit Click here and download it now
July 2nd, 2009 3:48pm

Hi Viv,Did you find the solution yet? I am facing exact same problem.Thanks,Soumitra
February 8th, 2010 7:39pm

MSDN (http://msdn.microsoft.com/en-us/library/system.security.policy.urlmembershipcondition.url(VS.80).aspx): The complete URL is considered, including the protocol (HTTP, HTTPS, FTP) and the file. Can you try "file:///C|/Program Files/Microsoft SQL Server/MSRS10.MSSQLSERVER/Reporting Services/ReportServer/bin/Microsoft.Samples.ReportingServices.CustomSecurity.dll"?IgorThis posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
February 9th, 2010 4:16am

Same as before:emailextension!WindowsService_0!1fc4!02/09/2010-13:45:07:: Error sending email. Microsoft.ReportingServices.Diagnostics.Utilities.RSException: The permissions granted to user 'salesmanager@sandbox' are insufficient for performing this operation. ---> Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user 'salesmanager@sandbox' are insufficient for performing this operation. at Microsoft.ReportingServices.Library.SecurityRequirements.CheckAccess(ItemType itemType, Byte[] securityDescriptor, String itemPath) at Microsoft.ReportingServices.Library.DefinitionLoader.GetParameterDefinition(CatalogItemContext itemContext, String historyId, Boolean forRendering, SecurityRequirements requirements) at Microsoft.ReportingServices.Library.RSService.GetReportParameters(ClientRequest session, CatalogItemContext reportContext, Boolean forRendering) at Microsoft.ReportingServices.Library.RSServiceDataProvider.GetParameters(ClientRequest session, CatalogItemContext reportContext)
February 9th, 2010 9:54pm

It does not look like same as before - it's about user salesmanager@sandbox not having permissons to the report, not CAS permissions as before. Make sure that subscription owner has permissons to the report as they are defined/implemented by your CustomSecurity.dllIgorThis posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
February 9th, 2010 11:42pm

Thanks for the reply Igor. Salesmanager@sandbox has access to the report. He can logon and run the report. He can also export the report in all supported formats. Also note that email subscription works if Include Report option is unchecked. Only when Include Report option is checked email subscription fails with this message: Failure sending mail: The permissions granted to user 'salesmanager@sandbox' are insufficient for performing this operation.Mail will not be resent.
February 11th, 2010 4:11pm

From the error in the trace file: access denied happens during the report rendering, when retreiving report parameter definitions. Check access here is invoked for the subscription owner, which happens to be 'salesmanager@sandbox'. I beleive this error is somehow related to your customsecurity.dll auth extention. Note that CheckAcess is invoked here under the SRRS service account, but for the user 'salesmanager@sandbox'.Worth to note that access denied happens now after loading the customsecurity.dll, which was the orignal problem (due to CAS permissions).IgorThis posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
February 11th, 2010 9:46pm

Why does the problem go away if I do not attach the output (i.e., link to report works)?
February 16th, 2010 3:38pm

If you include report link only (do not attach or embed) then report is not rendered, and you don't see this problem.Igor This posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
February 16th, 2010 8:01pm

Igor, can it be that for file attachment ReportServer uses a local folder, which the user salesmanager@sandbox does not have access to?
February 19th, 2010 11:53am

I don't think so. The access denied happens during the report rendering, when retreiving report parameter definitions. That is before sending email.Igor This posting is provided "AS IS" with no warranties, and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
February 19th, 2010 8:33pm

Any clue as to where should I fix this? I have put debug statements in the CheckAccess methods all over in my authorization plugin, but they are not getting called when this happens.
February 19th, 2010 9:36pm

Has anyone found a solution to this? I'm getting the exact same error message. I did the same as soumitraghosh and added debug statements to all CheckAccess methods, and they're not even called. It looks like this is a bug with subscriptions & Forms auth. library!WindowsService_0!f58!12/06/2010-13:40:06:: i INFO: RenderForNewSession('/Reports/Report Execution History') library!WindowsService_0!f58!12/06/2010-13:40:09:: e ERROR: Throwing Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user 'testUser' are insufficient for performing this operation., ; Info: Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException: The permissions granted to user 'testUser' are insufficient for performing this operation. Looking at the execution log, I see that the report is rendered under the context of the SSRS service account. But the AccessDeniedException is mysteriously being thrown for my testUser. If I change the subscription owner to the SSRS admin account, it works fine.
Free Windows Admin Tool Kit Click here and download it now
December 6th, 2010 5:41pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics