Page 1 of 1

Question about function export to pdf

Posted: Sun Jul 10, 2016 3:25 am
by pdt1704
Hi all,
Stimulsoft report have function export to pdf file include digital signature?

Please help.
Thanks

Re: Question about function export to pdf

Posted: Mon Jul 11, 2016 7:42 am
by HighAley
Hello.

Yes, you could add the Digital signature to the report.
For more information read the User Manual.

This feature is available in .NET report engine only.
Could you specify which our component you use?

Thank you.

Re: Question about function export to pdf

Posted: Tue Jul 12, 2016 4:03 am
by pdt1704
Hi,
I uses .Net web report with version 2016.1.16
Could you give example used Digital signature with export pdf file?
Please help.

Thanks.

Re: Question about function export to pdf

Posted: Tue Jul 12, 2016 6:42 am
by HighAley
Hello.

Could you specify which our Viewer you use?
Please, send us a name of the component or its screenshot.

Thank you.

Re: Question about function export to pdf

Posted: Tue Jul 12, 2016 6:55 am
by pdt1704
Hi,
I used Stiwebviewer of Stimulsoft.Report.Web to show report, but sometimes I used Stimulsoft.Report.ExportDocument to export report direct to pdf and show this file. Now I would like set digital signature for pdf file within processing export pdf together both case(Stiwebviewer and Stimulsoft.Report.ExportDocument).

Please help.
Thanks.

Re: Question about function export to pdf

Posted: Wed Jul 13, 2016 3:29 pm
by HighAley
Hello.

You could handle the ReportExport event of the StiWebViewer1 to change the export settings or set them in the Export dialog.

If you use ExportDocument method, you could specify settings with StiPdfExportSettings. Here is sample code:

Code: Select all

var settings = new StiPdfExportSettings();
settings.UseDigitalSignature = true;
settings.GetCertificateFromCryptoUI = false;
settings.UseLocalMachineCertificates = true;
settings.SubjectNameString = certificateName;
Thank you.

Re: Question about function export to pdf

Posted: Mon Jul 20, 2020 6:18 am
by divs
HighAley wrote: Mon Jul 11, 2016 7:42 am Hello.

Yes, you could add the Digital signature to the report.
For more information read the User Manual.

This feature is available in .NET report engine only.
Could you specify which our component you use?

Thank you.
Is this available for (.net core 2.1)

Re: Question about function export to pdf

Posted: Tue Jul 21, 2020 7:17 am
by Lech Kulikowski
Hello,

At the current moment, Digital signature is not supported in the NET Core version.

Thank you.