views:

120

answers:

1

We are using SSRS 2008 to render pdf reports for our users. They would like the capability to digitally sign these reports. Is there anyway to add a digital signature block to a pdf file using SSRS 2008?

A: 

If by Digital Signature, you are referring to assigning a security certificate to the PDF file, then no, the Render method of the ReportViewer control will definitely not be able to accomplish this.

One idea would be to generate the PDF file as you are currently doing, then open the PDF file programatically and sign it. Basically, a two step process.

Unfortunately, you will need to find some libraries that will support this operation, or write your own.

Jon