views:

8

answers:

0

I implemented a report (Microsoft Reporting Services) functionality in my ASP.NET web app. Its local mode (report file extension is rdlc). There is custom code as well, its in a seperate DLL which is referenced by the reports. Localy everything works fine, but after deploying I get Error while loading code module....

I searched the net and found that the custom DLL file needs to be copied to the PrivateAssembly folder. This is the link:http://jachman.wordpress.com/2007/12/19/how-to-use-custom-assemblies-with-reports/

So for local testing I removed this file locally and I got the same error message, after placing it in the PrivateAssembly folder again, it worked again locally. Doing the same thing on the production server (Windows Server 2003 SP2) does not work, the message is still the same. What else might I have forgotten?

Thanks ! :-)