Attempting to sign a PDF document w/ the code below. The "Reason" and "Location" values appear in the digital signature in the PDF file, but the "Contact" value does not!!!
How can I cause the "Contact" value to display in the PDF?
Thanks
=======================
Dim oSig As PdfFileSignature
oSig = New PdfFileSignature(fnIn, fnOut) '
Dim oPFX As New Pkcs7Signature(False, fnPFX, "123456")
oSig.Sign(fieldname, "myReason", "myContact", "myLoc", oPFX)
Hi Gregg,
I’m sorry to inform you that displaying the contact information in the signature is currently not supported. However, we have already logged a new feature request as PDFKITNET-19222 in our issue tracking system to support it. You’ll be notified via this forum thread once it is supported in future.
We’re sorry for the inconvenience. If you have any further questions, please do let us know.
Regards,
Then... is there another way to display (in the PDF file) the name of the person signing the document? Right now, using the code above, it only displays the "location" and the "reason"... but not the name of the person signing.
Thx
Trying to use the sample code below, to place the Signer's Name (in this example, "Alice") into the digital signature field... "Alice" does not display in the PDF in the DigSig field... "Signature Reason" and "Odessa" do, but not "Alice".
How can I get the signer name to display in that digital signature field?
//add second signature
PdfFileSignature pdfSign2 = new PdfFileSignature("SignedByJohn.pdf","SignedByJohnAndAlice.pdf");
pdfSign2.Sign("Signature from Alice", "Signature Reason", "Alice", "Odessa", new Pkcs7Signature(false, "test2.pfx", "password"));
//each time new signature is added you must save the document
pdfSign2.Save();
Hi Gregg,
The issue previously logged caters both contact and signer’s name. Actually, you can only display date, reason, and location at the moment, but not contact and signer’s name. Once the above issue is resolved, both of these properties will be supported.
We’re sorry for the inconvenience. If you find any further questions, please do let us know.
Regards,