Hi @Deleted Account or whosoever can reply,
I am using Adobe JS to digital sign a PDF which contains XFA forms fields. In PDF there exists one signature field on which we want to sign using pfx file. We have followed 2 approaches to sign this pdf document but none works:
Code:
var sign = app.trustedFunction(
function(oDoc){
app.beginPriv();
var ppklite = security.getHandler("Adobe.PPKLite");
ppklite.login("Lokesh12", "/C/Users/lsinghal/Desktop/MIR/LokeshSinghal.pfx");
var f = this.getField('incident[0].Page12[0].SignatureField1[0]');
var myInfo = {
password: "Lokesh12",
location: "Country, IN",
reason: "I am approving doc document",
contactInfo: "[link removed]",
appearance: "basic",
mdp: "allowNone"
};
f.signatureSign({oSig: ppklite, oInfo: myInfo,bUI: false,cLegalAttest: "To reduce file size, fonts are not embedded." });
ppklite.logout();
app.endPriv();
}
);
sign(this);
Error :
NotAllowedError: Security settings prevent access to this property or method.
Field.signatureSign:17:Console undefined:Exec
GeneralError: Operation failed.
Field.signatureSign:17:Console undefined:Exec
Field is already signed
Please help us to sign PDF using any approach by using Adobe Javascript.
Thanks,
Lokesh
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Please post your question in https://community.adobe.com/t5/document-cloud-pdf-services/bd-p/document-cloud-pdf-services?page=1&s...
The team there will be able to help with product-specific questions
Views
Replies
Total Likes
Please post your question in https://community.adobe.com/t5/document-cloud-pdf-services/bd-p/document-cloud-pdf-services?page=1&s...
The team there will be able to help with product-specific questions
Views
Replies
Total Likes