reporting services: use a custom assembly with a local (RDLC) report
Posted
by JMarsch
on Stack Overflow
See other posts from Stack Overflow
or by JMarsch
Published on 2010-03-23T21:50:21Z
Indexed on
2010/03/23
21:53 UTC
Read the original article
Hit count: 647
Hello:
I am designing a report that will be used in local mode (an RDLC file) in a Winform app. I have a custom assembly with a static class that has some functions that I want to use inside of the report (as expressions).
I have found all sorts of help for doing this with RDL reports, but I'm running into a permissions problem with my RDLC report.
I get the following error at runtime: "The report references the code module (my module), which is not a trusted assembly".
I know that this is some kind of a code security issue, but I'm not sure what to do to fix it. The documentation that I have seen online is aimed at RDL reports, and it instructs me to edit a SQL Server-specific policy file. I'm using RDLC, so there is no sql server involved. What do I need to do to acquire the appropriate permissions?
© Stack Overflow or respective owner