Disable some file types when save
Disable some file types when save
Our team is evaluating Reports.Fx for Flex, we have to implement password protection when save into excel or pdf. Three questions how to implement the followings
1) Disable save menu of other file types except excel and pdf.
2) Enforce users to save with password.
3) Enforce 128 bit Encryption Key Length
Any suggestions?
1) Disable save menu of other file types except excel and pdf.
2) Enforce users to save with password.
3) Enforce 128 bit Encryption Key Length
Any suggestions?
Disable some file types when save
Hello,
1. You can disable unneeded exports using the following options:
Thank you.
1. You can disable unneeded exports using the following options:
2., 3. You can export a report using code (please see the attached example) and save it as you want. Unfortunately, currently embedded encryption is not supported.StiOptions.viewer.exports.showExportToCsv = false;
StiOptions.viewer.exports.showExportToText = false;
StiOptions.viewer.exports.showExportToRtf = false;
StiOptions.viewer.exports.showExportToWord2007 = false;
StiOptions.viewer.exports.showExportToHtml = false;
Thank you.
- Attachments
-
- 1360.Sample.zip
- (49.7 KiB) Downloaded 426 times
Disable some file types when save
I am drafting a report on the evaluation. Thank you on the quick reply.
I had seen the samples that you attached. I had done it and pdf was generated. I used the following in order to set password to the pdf but failed.
var settings: StiPdfExportSettings = new StiPdfExportSettings();
settings.passwordInputOwner = "1";
settings.passwordInputUser = "2";
// Create a buffer for report exporting
var buffer: ByteArray = new ByteArray();
// Export report to ByteArray
service.exportPdf(report, buffer, settings);
Please help.
You quoted "Unfortunately, currently embedded encryption is not supported." Any plan to do it in the coming future?
Regards.
I had seen the samples that you attached. I had done it and pdf was generated. I used the following in order to set password to the pdf but failed.
var settings: StiPdfExportSettings = new StiPdfExportSettings();
settings.passwordInputOwner = "1";
settings.passwordInputUser = "2";
// Create a buffer for report exporting
var buffer: ByteArray = new ByteArray();
// Export report to ByteArray
service.exportPdf(report, buffer, settings);
Please help.
You quoted "Unfortunately, currently embedded encryption is not supported." Any plan to do it in the coming future?
Regards.
Disable some file types when save
Hello.
Unfortunately, system assemblies can't be used in Flex. Therefore encryption algorithms (RC4, MD5) must be ported to Flex engine.
It is very difficult and this functionality is not enough demand.
And this task has very low priority and we could say when it will be available.
Thank you.
Stimulsoft Reports.Net uses Windows system assemblies for encryption.JohnnySo wrote:I am drafting a report on the evaluation. Thank you on the quick reply.
I had seen the samples that you attached. I had done it and pdf was generated. I used the following in order to set password to the pdf but failed.
Please help.Code: Select all
var settings: StiPdfExportSettings = new StiPdfExportSettings(); settings.passwordInputOwner = "1"; settings.passwordInputUser = "2"; // Create a buffer for report exporting var buffer: ByteArray = new ByteArray(); // Export report to ByteArray service.exportPdf(report, buffer, settings);
You quoted "Unfortunately, currently embedded encryption is not supported." Any plan to do it in the coming future?
Unfortunately, system assemblies can't be used in Flex. Therefore encryption algorithms (RC4, MD5) must be ported to Flex engine.
It is very difficult and this functionality is not enough demand.
And this task has very low priority and we could say when it will be available.
Thank you.
Disable some file types when save
This morning I presented a demo with evaluation report to the management. The management would like to know if it is possible to develop the encryption feature for a price. If yes, please give a email (shown in my profile) to me on how many and take how long.
We have to provide a function to generate sensitive data that users can save for further usage. The data must be encrypted with password.
We have to provide a function to generate sensitive data that users can save for further usage. The data must be encrypted with password.
Disable some file types when save
Hello.
We don't have solution development service. But we can develop some features for our customers by request. It depends of what encryption do you need and if it is possible to do.
Please, specify what encryption and where do you need in details.
Thank you.
We don't have solution development service. But we can develop some features for our customers by request. It depends of what encryption do you need and if it is possible to do.
Please, specify what encryption and where do you need in details.
Thank you.
Disable some file types when save
Thanks on the reply. I will comply the specification in a few days for you. Do I post the specification here or email to you?
Disable some file types when save
Hello.
Waiting for your reply.
Thank you.
Please, send the specification to support@stimulsoft.com.JohnnySo wrote:Thanks on the reply. I will comply the specification in a few days for you. Do I post the specification here or email to you?
Waiting for your reply.
Thank you.
Disable some file types when save
Hi,
The specification "ReportFx for Flex Encryption Support.docx" mailed to support@stimulsoft.com .
Please check. Nice to hear from you for more details. Thanks.
The specification "ReportFx for Flex Encryption Support.docx" mailed to support@stimulsoft.com .
Please check. Nice to hear from you for more details. Thanks.
Disable some file types when save
Hello.
Thank you.
We received your mail and we are preparing answer for you.JohnnySo wrote:The specification "ReportFx for Flex Encryption Support.docx" mailed to support@stimulsoft.com .
Please check. Nice to hear from you for more details. Thanks.
Thank you.