SSRS Report Builder Loading Assembly Error - reporting-services

I am simply trying to add an assembly reference to Report Builder. However, I copied the assembly's dll and added to (C:\Program Files\Microsoft SQL Server\MSRS11.MSSQLSERVER\Reporting Services\ReportServer\bin). After that i added the reference to it from the report builder.
However, upon trying to preview the report i get:
An error occurred during local report processing. The definition of the report '' is invalid. Error while loading code module: 'PebbleReports.SsrsUtils, Version:1.0.0.0, Culture=neutral, PublicKeyToken=null, Details: Could not load file or assembly 'PebbleReports.SsrsUtils, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
Any help is much appreciated, as I found nothing so far on google.

try copying the DLLs to the following location:
C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies

Related

VS 2013 Custom assemblies load Rdlc report

My external assemblies are not loading while i run report...
it does compile with no error but report could not run the error shows :
Error while loading code module: ‘ResultAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null’. Details: Could not load file or assembly 'ResultAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
In VS 2013
I have added my assembly in C:\Program Files (x86)\MSBuild\12.0\Bin.... it works fine when i compile my solution
But report not running :(

How to display report execution time in client's local time zone in SSRS 2012

I have reports in SSRS2008R2 which uses this code to return the report execution time in the local time zone of the client running the report:
=System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(DateTime.UtcNow,TimeZoneInfo.Utc.Id,First(Fields!TenantTimeZoneName.Value, "Company"))
In order for this to run in SSRS2008R2, I added the reference assembly below:
System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
These reports have run fine for years until now. I am building up a new SSRS2012 server and when I attempt to deploy a report to the new server, I get the following error during deployment:
The definition of the report '/MyReport' is invalid.
Assuming that this just meant that I would have to switch the reference assembly to point to a higher release System.Core, I changed the assembly to point to System.Core 4.0 instead of System.Core 3.5. When I do that, I get this error:
Error while loading code module: ‘System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089’. Details: Could not load file or assembly 'System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified.
I checked the file location and the System.Core assembly shows up just where the path indicates it is supposed to be. I also checked the GAC and the assembly is there.
I really need to get this working ASAP but I am at an impasse. Any ideas?
This is old, but for anyone looking. It is best to remove the reference to System.Core and call the same function via system.
The example below converts a datetime from "UTC" to "EST".
=System.TimeZoneInfo.ConvertTimeBySystemTimeZoneId(Fields!YOURDATETIMEHERE.Value, "Dateline Standard Time", "Eastern Standard Time")

Neodynamic Barcode Professional upload error for SSRS report server

I am Developing a SSRS Report for Displaying Barcode . I am Using Neodynamic Barcode Proffessional and the Report is Working fine in Developer Machine (MY Machine). When i try to Upload the Report into SSRS Report Server i get this Error Can any one Help on this. Thanks in Advance
Note : I am Using SSRS 2012 Version and The Report Server is also the Same
Error :
Error while loading code module: ‘Neodynamic.ReportingServices.Barcode, Version=7.0.2000.0, Culture=neutral, PublicKeyToken=c6b33c3093a0d4cd’. Details: Could not load file or assembly 'Neodynamic.ReportingServices.Barcode, Version=7.0.2000.0, Culture=neutral, PublicKeyToken=c6b33c3093a0d4cd' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040) (rsErrorLoadingCodeModule) Get Online HelpError in class instance declaration for class Neodynamic.ReportingServices.Barcode: [BC30002] Type 'Neodynamic.ReportingServices.Barcode' is not defined. (rsCompilerErrorInClassInstanceDeclaration) Get Online Help
There is an error on line 4 of custom code: [BC30451] Name 'Neodynamic' is not declared. (rsCompilerErrorInCode) Get Online Help
Put your dll Neodynamic.ReportingServices.Barcode in
Driver Server Location:\Program Files\Microsoft SQL Server\MSRS12.SQLLOCAL\Reporting Services\ReportServer\bin

rsErrorLoadingCodeModule: what are the steps to deploy an assembly for use with Report Builder 2.0?

I've built an assembly with a public static class and a public static method with a return type of int. Eventually I'll add more methods but for now the assembly contains just one method. I'm trying to use this assembly in my SSRS reports but it results in an error:
[rsErrorLoadingCodeModule]
Error while loading code module: ‘XXX.Calcs, Version=2013.1.21.0, Culture=neutral, PublicKeyToken=null’.
Details: Could not load file or assembly 'XXX.Calcs, Version=2013.1.21.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.
I referenced the assembly through Report Properties -> References. When I create an expression that uses the method in the assembly and then build, I get the above error.
I deployed the assembly to:
C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies
Thoughts? Am I missing any steps?
I found this and followed the steps exactly.

How to create .snk file for Mono android

I have done android project in the mono develop It working fine in debug mode but when I am Trying to run project in release mode then it is giving following error:
C:\Users\Administrator.EDZ0138\Documents\Projects\IdooctopusNew\IdooctopusNew\SGEN: Error: Could not load file or assembly 'Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=c4c4237547e4b6cd' or one of its dependencies. Strong name validation failed. (Exception from HRESULT: 0x8013141A) (IdooctopusNew)
Can anyone please help me ?
I got a solution for this issue.
You just have to do is, put the mono.android.dll in to the C:\Program
Files\Microsoft SDKs\Windows\v7.0A\bin folder, open a command prompt and do
following steps:
cd C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin
sn -Vr Mono.Android.dll
gacutil -i C:\Program Files\Microsoft SDKs\Windows\v7.0A\bin
Then build the project.
If you get the error for another DLL like System.xml.dll etc. then repeat above
procedure for respective DLL.
All the best.......!