I have both a custom assembly and a data processing extension. The DPE I
have successfully integrated into RS. But, I have written a custom assembly
that I use for creating a barcode image. I run it fine in ReportDesigner and
believe I have given it and the Barcode.dll (3rd party) "FullTrust" in the
rssrvpolicy.config file.

The problem is when I run I do not even get an error. I integrated the
EventLog to try to trace the problem but it never gets called by Reporting
Services and just renders the image empty.

If anyone has any suggestions on this I would greatly appreciate it. I have
a custom assembly that uses a 3rd party (Pegasus SmartExpress Barcode) dll.
I can execute perfectly in VS.Net design mode. But, cannot in ReportManager.

Thanks
Tom

RE: Custom Assembly not Executing by Simon

Simon
Fri Oct 08 00:27:01 CDT 2004

Tom,

Possibly the registered Assembly has the incorrect Assembly version in
Report Designer (see report Properties ... References)

I avoid having to delete and re-define the refernece to the newly compiled
assembly by stopping version incrementation in the AssemblyInfo.cs file ie:
[assembly: AssemblyVersion("1.0.0.0")]

regards,


RE: Custom Assembly not Executing by TomWalls

TomWalls
Fri Oct 08 08:45:03 CDT 2004

Simon

Thanks for the idea it makes sense...but it didn't work either. Not sure
what's going on here.

Tom

"Simon" wrote:

> Tom,
>
> Possibly the registered Assembly has the incorrect Assembly version in
> Report Designer (see report Properties ... References)
>
> I avoid having to delete and re-define the refernece to the newly compiled
> assembly by stopping version incrementation in the AssemblyInfo.cs file ie:
> [assembly: AssemblyVersion("1.0.0.0")]
>
> regards,
>