Signature Service Java API Quick Start (SOAP) signature-service-java-api-quickstart-soap
The following Java API Quick Start(SOAP) are available for AEM Forms JEE Signature service:
Quick Start (SOAP mode): Adding a signature field to a PDF document using the Java API
Quick Start (SOAP mode): Retrieving signature field names using the Java API
Quick Start (SOAP mode): Modifying a signature field using the Java API
Quick Start (SOAP mode): Digitally signing a PDF document using the Java API
Quick Start (SOAP mode): Digitally signing a XFA-based Form using the Java API
Quick Start (SOAP mode): Certifying a PDF document using the Java API
Quick Start (SOAP mode): Verifying a digital signature using the Java API
Quick Start (SOAP mode): Verifying multiple digital signatures using the Java API
Quick Start (SOAP mode): Removing a digital signature using the Java API
Quick Start (SOAP mode): Apply document timestamp using the Java API
AEM Forms JEE operations can be performed using the AEM Forms strongly typed API and the connection mode should be set to SOAP.
Quick Start (SOAP mode): Adding a signature field to a PDF document using the Java API quick-start-soap-mode-adding-a-signature-field-to-a-pdf-document-using-the-java-api
The following Java code example adds a signature field named SignatureField1 to a PDF document that is based on a PDF file named Loan.pdf. The PDF document that contains the new signature field is saved as a PDF file named LoanSig.pdf. (See Adding Signature Fields.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
* 4. activation.jar (required for SOAP mode)
β * 5. axis.jar (required for SOAP mode)
β * 6. commons-codec-1.3.jar (required for SOAP mode)
β * 7. commons-collections-3.1.jar (required for SOAP mode)
β * 8. commons-discovery.jar (required for SOAP mode)
β * 9. commons-logging.jar (required for SOAP mode)
β * 10. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 11. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 12. jaxrpc.jar (required for SOAP mode)
β * 13. log4j.jar (required for SOAP mode)
β * 14. mail.jar (required for SOAP mode)
β * 15. saaj.jar (required for SOAP mode)
β * 16. wsdl4j.jar (required for SOAP mode)
β * 17. xalan.jar (required for SOAP mode)
β * 18. xbean.jar (required for SOAP mode)
β * 19. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class AddSignatureFieldSOAP {
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document to which a signature field is added
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\Loan.pdf");
β Document inDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a PositionRectangle object that specifies
β //the signature fields location
β PositionRectangle post = new PositionRectangle(193,47,133,12);
β //Specify the page number that will contain the signature field
β java.lang.Integer pageNum = new java.lang.Integer(1);
β //Add a signature field to the PDF document
β Document sigFieldPDF = signClient.addSignatureField(
β inDoc,
β fieldName,
β pageNum,
β post,
β null,
β null);
β //Save the PDF document that contains the signature field
β File outFile = new File("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β sigFieldPDF.copyToFile(outFile);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Retrieving signature field names using the Java API quick-start-soap-mode-retrieving-signature-field-names-using-the-java-api
The following Java code example retrieves the names of signature fields in a PDF document named LoanSig.pdf. (See Retrieving Signature Field Names.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class GetSignatureFieldsSOAP {
βpublic static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document that contains signature fields
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β Document inDoc = new Document (fileInputStream);
β //Retrieve the name of the documentβs signature fields
β List fieldNames = signClient.getSignatureFieldList(inDoc);
β //Obtain the name of each signature field by iterating through the
β //List object
β Iterator iter = fieldNames.iterator();
β int i = 0 ;
β String fieldName="";
β while (iter.hasNext()) {
β PDFSignatureField signatureField = (PDFSignatureField)iter.next();
β fieldName = signatureField.getName();
β System.out.println("The name of the signature field is " +fieldName);
β i++;
β }
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Modifying a signature field using the Java API quick-start-soap-mode-modifying-a-signature-field-using-the-java-api
The following Java code example modifies a signature field named SignatureField1 by locking all fields in the form when a signature is applied to the signature field and ensuring that no changes are allowed. After the Signature service returns the PDF document that contains the modified signature field, the PDF document is saved as a PDF file named LoanSig.pdf. (This example overwrites the PDF file that is passed to the Signature service.) (See Modifying Signature Fields.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class ModifySignatureFieldSOAP {
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document that contains a signature field to modify
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β Document inDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a PDFSignatureFieldProperties
β PDFSignatureFieldProperties fieldProperties = new PDFSignatureFieldProperties();
β //Create a PDFSeedValueOptionSpec object that stores
β //seed value dictionary information.
β PDFSeedValueOptionSpec seedOptionsSpec = new PDFSeedValueOptionSpec();
β //Disallow changes to the PDF document. Any change to the document invalidates
β //the signature
β seedOptionsSpec.setMdpValue(MDPPermissions.NoChanges);
β //Create a FieldMDPOptionSpec object that stores
β //signature field lock dictionary information.
β FieldMDPOptionSpec fieldMDPOptionsSpec = new FieldMDPOptionSpec();
β //Lock all fields in the PDF document
β fieldMDPOptionsSpec.setAction(FieldMDPAction.ALL);
β //Set dictionary information
β fieldProperties.setSeedValue(seedOptionsSpec);
β fieldProperties.setFieldMDP(fieldMDPOptionsSpec);
β //Modify the signature field
β Document modSignatureField = signClient.modifySignatureField(inDoc,fieldName,fieldProperties);
β //Save the PDF document that contains modified signature field
β File file = new File("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β modSignatureField.copyToFile(file);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Digitally signing a PDF document using the Java API quick-start-soap-mode-digitally-signing-a-pdf-document-using-the-java-api
The following Java code example digitally signs a PDF document that is based on a PDF file named LoanSig.pdf. The alias that is specified for the security credential is secure, and revocation checking is performed. Because no CRL or OCSP server information is specified, the server information is obtained from the certificate used to digitally sign the PDF document. The signed document is saved as a PDF file named LoanSigned.pdf. (See Digitally Signing PDF Documents.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.livecycle.signatures.pki.client.types.common.HashAlgorithm;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class SignDocumentSOAP {
βpublic static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document to sign
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β Document credDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a Credential object
β Credential myCred = Credential.getInstance("secure");
β //Specify the reason to sign the document
β String reason = "The document was reviewed";
β //Specify the location of the signer
β String location = "New York HQ";
β //Specify contact information
β String contactInfo = "Tony Blue";
β //Create a PDFSignatureAppearanceOptions object
β //and show date information
β PDFSignatureAppearanceOptionSpec appear = new PDFSignatureAppearanceOptionSpec();
β appear.setShowDate(true);
β appear.setShowReason(true);
β //Set revocation checking to false
β java.lang.Boolean revCheck = new Boolean(true);
β //Create an OCSPOptionSpec object to pass to the sign method
β OCSPOptionSpec ocspSpec = new OCSPOptionSpec();
β //Create a CRLOptionSpec object to pass to the sign method
β CRLOptionSpec crlSpec = new CRLOptionSpec();
β //Create a TSPOptionSpec object to pass to the sign method
β TSPOptionSpec tspSpec = new TSPOptionSpec();
β //Sign the PDF document
β Document signedDoc = signClient.sign(
β credDoc,
β fieldName,
β myCred,
β HashAlgorithm.SHA1,
β reason,
β location,
β contactInfo,
β appear,
β revCheck,
β ocspSpec,
β crlSpec,
β tspSpec);
β //Save the signed PDF document
β File outFile = new File("C:\\ΓΫΆΉΚΣΖ΅\LoanSigned.pdf");
β signedDoc.copyToFile (outFile);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Digitally signing a XFA-based Form using the Java API quick-start-soap-mode-digitally-signing-a-xfa-based-form-using-the-java-api
The following Java code example signs an interactive form that is rendered by the Forms service. The com.adobe.idp.Document
instance that is returned by the Forms service is passed to the Signature service. The signed interactive form is saved as a PDF file named LoanXFASigned.pdf.
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.formsservice.client.FormsResult;
βimport com.adobe.livecycle.formsservice.client.FormsServiceClient;
βimport com.adobe.livecycle.formsservice.client.PDFFormRenderSpec;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.livecycle.signatures.pki.client.types.common.HashAlgorithm;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class SignXFAFormsSOAP {
βpublic static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Get the XFA form to sign
β Document myForm = GetForm(myFactory);
β //Sign the XFA form
β SignXFA(myForm,myFactory);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β//Creates an interactive PDF form based on a XFA form
βprivate static Document GetForm(ServiceClientFactory myFactory)
β{
β try
β {
β //Create a FormsServiceClient object
β FormsServiceClient formsClient = new FormsServiceClient(myFactory);
β //Specify a PDF document to sign
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSigXFA.pdf");
β Document xfaForm = new Document (fileInputStream);
β //Retrieve form data
β FileInputStream cData = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\Loan.xml");
β Document oInputData = new Document(cData);
β //Cache the PDF form
β PDFFormRenderSpec pdfFormRenderSpec = new PDFFormRenderSpec();
β pdfFormRenderSpec.setGenerateServerAppearance(true);
β //Invoke the renderPDFForm2 method
β FormsResult formOut = formsClient.renderPDFForm2(
β xfaForm, //formQuery
β oInputData, //inDataDoc
β pdfFormRenderSpec, //PDFFormRenderSpec
β null, //urlSpec
β null //attachments
β );
β //Create a Document object that stores form data
β Document myForm = formOut.getOutputContent();
β return myForm;
β}
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β return null;
β}
β//Sign the PDF document
βprivate static void SignXFA(Document doc, ServiceClientFactory myFactory)
β{
β try
β {
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a Credential object
β Credential myCred = Credential.getInstance("secure");
β //Specify the reason to sign the document
β String reason = "The document was reviewed";
β //Specify the location of the signer
β String location = "New York HQ";
β //Specify contact information
β String contactInfo = "Tony Blue";
β //Create a PDFSignatureAppearanceOptions object
β //and show date information
β PDFSignatureAppearanceOptionSpec appear = new PDFSignatureAppearanceOptionSpec();
β appear.setShowDate(true);
β appear.setShowReason(true);
β //Set revocation checking to false
β java.lang.Boolean revCheck = new Boolean(true);
β //Create an OCSPOptionSpec object to pass to the sign method
β OCSPOptionSpec ocspSpec = new OCSPOptionSpec();
β //Create a CRLOptionSpec object to pass to the sign method
β CRLOptionSpec crlSpec = new CRLOptionSpec();
β //Create a TSPOptionSpec object to pass to the sign method
β TSPOptionSpec tspSpec = new TSPOptionSpec();
β //Sign the PDF document
β Document signedDoc = signClient.sign(
β doc,
β fieldName,
β myCred,
β HashAlgorithm.SHA1,
β reason,
β location,
β contactInfo,
β appear,
β revCheck,
β ocspSpec,
β crlSpec,
β tspSpec);
β //Save the signed PDF document
β File outFile = new File("C:\\ΓΫΆΉΚΣΖ΅\LoanXFASigned.pdf");
β signedDoc.copyToFile (outFile);
β}
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Certifying a PDF document using the Java API quick-start-soap-mode-certifying-a-pdf-document-using-the-java-api
The following Java code example certifies a PDF document that is based on a PDF file named LoanSig.pdf. The alias that is specified for the security credential is secure, and revocation checking is not performed. The certified document is saved as a PDF file named LoanCertified.pdf. (See Certifying PDF Documents.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.livecycle.signatures.pki.client.types.common.HashAlgorithm;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class CertifyDocumentSOAP {
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document to certify
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSig.pdf");
β Document credDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a Credential object
β Credential myCred = Credential.getInstance("secure");
β //Specify the reason to sign the document
β String reason = "The document was reviewed";
β //Specify the location of the signer
β String location = "My company";
β //Specify contact information
β String contactInfo = "New York, New York";
β //Create a PDFSignatureAppearanceOptions object and show date information
β PDFSignatureAppearanceOptionSpec appear = new PDFSignatureAppearanceOptionSpec();
β appear.setShowDate(true);
β //Set revocation checking to false
β java.lang.Boolean revCheck = new Boolean(false);
β //Set locking to false
β java.lang.Boolean lockField = new Boolean(false);
β //Specify a legalAttestation value
β String msg = "Any change to this document will invalidate the certificate";
β //Create objects to pass to the certify method
β OCSPOptionSpec ocspSpec = new OCSPOptionSpec();
β CRLOptionSpec crlSpec = new CRLOptionSpec();
β TSPOptionSpec tspSpec = new TSPOptionSpec();
β //Certify the PDF document
β Document signedDoc = signClient.certify(
β credDoc,
β fieldName,
β myCred,
β HashAlgorithm.SHA1,
β reason,
β location,
β contactInfo,
β MDPPermissions.NoChanges,
β msg,
β appear,
β revCheck,
β lockField,
β ocspSpec,
β crlSpec,
β tspSpec);
β //Save the signed PDF document
β File outFile = new File("C:\\ΓΫΆΉΚΣΖ΅\LoanCertified.pdf");
β signedDoc.copyToFile (outFile);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Verifying a digital signature using the Java API quick-start-soap-mode-verifying-a-digital-signature-using-the-java-api
The following Java code example verifies a digital signature that is in a signed PDF document that is based on a PDF file named LoanSigned.pdf. The verification time is set to current time and the revocation checking option is set to best effort. (See Verifying Digital Signatures.)
β/*
β * This Java Quick Start uses the following JAR files
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
* 4. activation.jar (required for SOAP mode)
β * 5. axis.jar (required for SOAP mode)
β * 6. commons-codec-1.3.jar (required for SOAP mode)
β * 7. commons-collections-3.1.jar (required for SOAP mode)
β * 8. commons-discovery.jar (required for SOAP mode)
β * 9. commons-logging.jar (required for SOAP mode)
β * 10. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 11. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 12. jaxrpc.jar (required for SOAP mode)
β * 13. log4j.jar (required for SOAP mode)
β * 14. mail.jar (required for SOAP mode)
β * 15. saaj.jar (required for SOAP mode)
β * 16. wsdl4j.jar (required for SOAP mode)
β * 17. xalan.jar (required for SOAP mode)
β * 18. xbean.jar (required for SOAP mode)
β * 19. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.livecycle.signatures.pki.client.types.common.RevocationCheckStyle;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class VerifySignatureSOAP{
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document that contains a digital signature
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSigned.pdf");
β Document inDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Create a PKIOptions object that contains PKI run-time options
β PKIOptions pkiOptions = new PKIOptions();
β pkiOptions.setVerificationTime(VerificationTime.CURRENT_TIME);
β pkiOptions.setRevocationCheckStyle(RevocationCheckStyle.BestEffort);
β //Verify the digital signature
β PDFSignatureVerificationInfo signInfo = signClient.verify2(
β inDoc,
β fieldName,
β pkiOptions,
β null);
β //Get the Signature Status
β SignatureStatus sigStatus = signInfo.getStatus();
β String myStatus="";
β //Determine the status of the signature
β if (sigStatus == SignatureStatus.DynamicFormSignatureUnknown)
β myStatus = "The signatures in the dynamic PDF form are unknown";
β else if (sigStatus == SignatureStatus.DocumentSignatureUnknown)
β myStatus = "The signatures in the PDF document are unknown";
β else if (sigStatus == SignatureStatus.CertifiedDynamicFormSignatureTamper)
β myStatus = "The signatures in a certified PDF form are valid";
β else if (sigStatus == SignatureStatus.SignedDynamicFormSignatureTamper)
β myStatus = "The signatures in a signed dynamic PDF form are valid";
β else if (sigStatus == SignatureStatus.CertifiedDocumentSignatureTamper)
β myStatus = "The signatures in a certified PDF document are valid";
β else if (sigStatus == SignatureStatus.SignedDocumentSignatureTamper)
β myStatus = "The signatures in a signed PDF document are valid";
β else if (sigStatus == SignatureStatus.SignatureFormatError)
β myStatus = "The format of a signature in a signed document is invalid";
β else if (sigStatus == SignatureStatus.DynamicFormSigNoChanges)
β myStatus = "No changes were made to the signed dynamic PDF form";
β else if (sigStatus == SignatureStatus.DocumentSigNoChanges)
β myStatus = "No changes were made to the signed PDF document";
β else if (sigStatus == SignatureStatus.DynamicFormCertificationSigNoChanges)
β myStatus = "No changes were made to the certified dynamic PDF form";
β else if (sigStatus == SignatureStatus.DocumentCertificationSigNoChanges)
β myStatus = "No changes were made to the certified PDF document";
β else if (sigStatus == SignatureStatus.DocSigWithChanges)
β myStatus = "There were changes to a signed PDF document";
β else if (sigStatus == SignatureStatus.CertificationSigWithChanges)
β myStatus = "There were changes made to the PDF document.";
β //Get the signature type
β SignatureType sigType = signInfo.getSignatureType();
β String myType = "";
β if (sigType.getType() == PDFSignatureType.AUTHORSIG)
β myType="Certification";
β else if(sigType.getType() == PDFSignatureType.RECIPIENTSIG)
β myType="Recipient";
β //Get the identity of the signer
β IdentityInformation signerId = signInfo.getSigner();
β String signerMsg = "";
β if (signerId.getStatus() == IdentityStatus.UNKNOWN)
β signerMsg = "Identity Unknown";
β else if (signerId.getStatus() == IdentityStatus.TRUSTED)
β signerMsg = "Identity Trusted";
β else if (signerId.getStatus() == IdentityStatus.NOTTRUSTED)
β signerMsg = "Identity Not Trusted";
β //Get the Signature properties returned by the Signature service
β SignatureProperties sigProps = signInfo.getSignatureProps();
β String signerName = sigProps.getSignerName();
β System.out.println("The status of the signature is: "+myStatus +". The signer identity is "+signerMsg +". The signature type is "+myType +". The name of the signer is "+signerName+".");
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Verifying multiple digital signatures using the Java API quick-start-soap-mode-verifying-multiple-digital-signatures-using-the-java-api
The following Java code example verifies multiple digital signatures that are in a signed PDF document that is based on a PDF file named LoanAllSigs.pdf. The verification time is set to current time and the revocation checking option is set to best effort. (See Verifying Multiple Digital Signatures.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.livecycle.signatures.client.types.*;
βimport com.adobe.livecycle.signatures.pki.client.types.common.RevocationCheckStyle;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class VerifyAllSignaturesSOAP{
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document that contains multiple digital signatures
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanAllSigs.pdf");
β Document inDoc = new Document (fileInputStream);
β //Create a PKIOptions object that contains PKI run-time options
β PKIOptions pkiOptions = new PKIOptions();
β pkiOptions.setVerificationTime(VerificationTime.CURRENT_TIME);
β pkiOptions.setRevocationCheckStyle(RevocationCheckStyle.BestEffort);
β //Verify all digital signatures that are in a PDF document
β PDFDocumentVerificationInfo allSig = signClient.verifyPDFDocument(
β inDoc,
β pkiOptions,
β null);
β //Get a list of all signatures that are in the PDF document
β List allSignatures = allSig.getVerificationInfos();
β //Create an Iterator object and iterate through
β //the List object
β Iterator<PDFSignatureVerificationInfo> iter = allSignatures.iterator();
β while (iter.hasNext()) {
β PDFSignatureVerificationInfo signInfo = (PDFSignatureVerificationInfo)iter.next();
β //Get the Signature Status
β SignatureStatus sigStatus = signInfo.getStatus();
β String myStatus="";
β //Determine the status of the signature
β if (sigStatus == SignatureStatus.DynamicFormSignatureUnknown)
β myStatus = "The signatures in the dynamic PDF form are unknown";
β else if (sigStatus == SignatureStatus.DocumentSignatureUnknown)
β myStatus = "The signatures in the PDF document are unknown";
β else if (sigStatus == SignatureStatus.CertifiedDynamicFormSignatureTamper)
β myStatus = "The signatures in a certified PDF form are valid";
β else if (sigStatus == SignatureStatus.SignedDynamicFormSignatureTamper)
β myStatus = "The signatures in a signed dynamic PDF form are valid";
β else if (sigStatus == SignatureStatus.CertifiedDocumentSignatureTamper)
β myStatus = "The signatures in a certified PDF document are valid";
β else if (sigStatus == SignatureStatus.SignedDocumentSignatureTamper)
β myStatus = "The signatures in a signed PDF document are valid";
β else if (sigStatus == SignatureStatus.SignatureFormatError)
β myStatus = "The format of a signature in a signed document is invalid";
β else if (sigStatus == SignatureStatus.DynamicFormSigNoChanges)
β myStatus = "No changes were made to the signed dynamic PDF form";
β else if (sigStatus == SignatureStatus.DocumentSigNoChanges)
β myStatus = "No changes were made to the signed PDF document";
β else if (sigStatus == SignatureStatus.DynamicFormCertificationSigNoChanges)
β myStatus = "No changes were made to the certified dynamic PDF form";
β else if (sigStatus == SignatureStatus.DocumentCertificationSigNoChanges)
β myStatus = "No changes were made to the certified PDF document";
β else if (sigStatus == SignatureStatus.DocSigWithChanges)
β myStatus = "There were changes to a signed PDF document";
β else if (sigStatus == SignatureStatus.CertificationSigWithChanges)
β myStatus = "There were changes made to the PDF document.";
β //Get the signature type
β SignatureType sigType = signInfo.getSignatureType();
β String myType = "";
β if (sigType.getType() == PDFSignatureType.AUTHORSIG)
β myType="Certification";
β else if(sigType.getType() == PDFSignatureType.RECIPIENTSIG)
β myType="Recipient";
β //Get the Signature properties returned by the Signature service
β SignatureProperties sigProps = signInfo.getSignatureProps();
β String signerName = sigProps.getSignerName();
β System.out.println("The status of the signature is: "+myStatus +". The signature type is "+myType +". The name of the signer is "+signerName+".");
β }
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Removing a digital signature using the Java API quick-start-soap-mode-removing-a-digital-signature-using-the-java-api
The following Java code example removes a digital signature from a signature field named SignatureField1. The name of the PDF file that contain the signature field is LoanSigned.pdf. (See Removing Digital Signatures.)
β/*
β * This Java Quick Start uses the SOAP mode and contains the following JAR files
β * in the class path:
β * 1. adobe-signatures-client.jar
β * 2. adobe-livecycle-client.jar
β * 3. adobe-usermanager-client.jar
β * 4. adobe-utilities.jar
β * 5. jboss-client.jar (use a different JAR file if the Forms Server is not deployed
β * on JBoss)
β * 6. activation.jar (required for SOAP mode)
β * 7. axis.jar (required for SOAP mode)
β * 8. commons-codec-1.3.jar (required for SOAP mode)
β * 9. commons-collections-3.1.jar (required for SOAP mode)
β * 10. commons-discovery.jar (required for SOAP mode)
β * 11. commons-logging.jar (required for SOAP mode)
β * 12. dom3-xml-apis-2.5.0.jar (required for SOAP mode)
β * 13. jaxen-1.1-beta-9.jar (required for SOAP mode)
β * 14. jaxrpc.jar (required for SOAP mode)
β * 15. log4j.jar (required for SOAP mode)
β * 16. mail.jar (required for SOAP mode)
β * 17. saaj.jar (required for SOAP mode)
β * 18. wsdl4j.jar (required for SOAP mode)
β * 19. xalan.jar (required for SOAP mode)
β * 20. xbean.jar (required for SOAP mode)
β * 21. xercesImpl.jar (required for SOAP mode)
β *
β * These JAR files are in the following path:
β * <install directory>/sdk/client-libs/common
β *
β * The adobe-utilities.jar file is in the following path:
β * <install directory>/sdk/client-libs/jboss
β *
β * The jboss-client.jar file is in the following path:
β * <install directory>/jboss/bin/client
β *
β * SOAP required JAR files are in the following path:
β * <install directory>/sdk/client-libs/thirdparty
β *
β * If you want to invoke a remote Forms Server instance and there is a
β * firewall between the client application and the server, then it is
β * recommended that you use the SOAP mode. When using the SOAP mode,
β * you have to include these additional JAR files
β *
β * For information about the SOAP
β * mode, see "Setting connection properties" in Programming
β * with AEM Forms
β */
βimport java.util.*;
βimport java.io.File;
βimport java.io.FileInputStream;
βimport com.adobe.livecycle.signatures.client.*;
βimport com.adobe.idp.Document;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
βimport com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
βpublic class ClearSignatureFieldSOAP {
β public static void main(String[] args) {
β try
β {
β //Set connection properties required to invoke AEM Forms using SOAP mode
β Properties connectionProps = new Properties();
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
β connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
β //Create a ServiceClientFactory instance
β ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
β //Create a SignatureServiceClient object
β SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
β //Specify a PDF document that contains the signature to remove
β FileInputStream fileInputStream = new FileInputStream("C:\\ΓΫΆΉΚΣΖ΅\LoanSigned.pdf");
β Document inDoc = new Document (fileInputStream);
β //Specify the name of the signature field
β String fieldName = "SignatureField1";
β //Clear the signature field
β Document outPDF = signClient.clearSignatureField(inDoc,fieldName);
β //Save the PDF document
β File outFile = new File("C:\\ΓΫΆΉΚΣΖ΅\Loan.pdf");
β outPDF.copyToFile(outFile);
β }
β catch (Exception ee)
β {
β ee.printStackTrace();
β }
β }
β}
Quick Start (SOAP mode): Apply document timestamp using the Java API quick-start-soap-mode-apply-document-timestamp-using-the-java-api
The following Java code example applies a timestamp to a PDF document:
β/*
* This Java Quick Start uses the SOAP mode and contains the following JAR files
* in the class path:
* 1. adobe-signatures-client.jar
* 2. adobe-livecycle-client.jar
* 3. adobe-usermanager-client.jar
* 4. adobe-utilities.jar
* 5. commons-httpclient-<version>.jar
* 6. axis.jar (required for SOAP mode)
* 7. jaxrpc-api.jar (required for SOAP mode)
* 8. commons-logging.jar (required for SOAP mode)
* 9. commons-discovery.jar (required for SOAP mode)
* 10. wsdl4j.jar (required for SOAP mode)
* 11. adobe-utilities.jar (required for SOAP mode)
*
*
* These JAR files are in the following path:
* <install directory>/sdk/client-libs/common
*
* The adobe-utilities.jar file is in the following path:
* <install directory>/sdk/client-libs/jboss
*
* SOAP required JAR files are in the following path:
* <install directory>/sdk/client-libs/thirdparty
*
* If you want to invoke a remote Forms Server instance and there is a
* firewall between the client application and the server, then it is
* recommended that you use the SOAP mode. When using the SOAP mode,
* you have to include these additional JAR files
*
* For information about the SOAP
* mode, see "Setting connection properties" in Programming
* with AEM Forms
*/
import java.io.File;
import java.io.FileInputStream;
import java.util.Properties;
import com.adobe.idp.Document;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
import com.adobe.idp.dsc.clientsdk.ServiceClientFactoryProperties;
import com.adobe.livecycle.signatures.client.SignatureServiceClient;
import com.adobe.livecycle.signatures.client.types.AddSignatureValidationOptionSpec;
import com.adobe.livecycle.signatures.client.types.TSPOptionSpec;
public class ApplyDocumentTimeStamp {
public static void main(String args[]){
{
try
{
//Set connection properties required to invoke AEM Forms using SOAP mode
Properties connectionProps = new Properties();
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_DEFAULT_SOAP_ENDPOINT, "https://'[server]:[port]'");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_TRANSPORT_PROTOCOL,ServiceClientFactoryProperties.DSC_SOAP_PROTOCOL);
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_SERVER_TYPE, "JBoss");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_USERNAME, "administrator");
connectionProps.setProperty(ServiceClientFactoryProperties.DSC_CREDENTIAL_PASSWORD, "password");
//Create a ServiceClientFactory instance
ServiceClientFactory myFactory = ServiceClientFactory.createInstance(connectionProps);
//Create a SignatureServiceClient object
SignatureServiceClient signClient = new SignatureServiceClient(myFactory);
//Specify a PDF document to sign
FileInputStream fileInputStream = new FileInputStream("test.pdf");
//Sign the PDF document
Document inPDFDoc = new Document (fileInputStream);
// create AddSignatureValidationOptionSpec Object. later we will set the required OptionSpecs
AddSignatureValidationOptionSpec addSigValidiationSpec = new AddSignatureValidationOptionSpec();
//Create a TSPOptionSpec object to pass to in AddSignatureValidationOptionSpec
TSPOptionSpec tspSpec = new TSPOptionSpec();
tspSpec.setTspServerURL("https://tsp-server-url.com");
tspSpec.setTspServerPassword("provide Timestamp server password");
tspSpec.setTspServerUsername("provide Timestamp server username");
addSigValidiationSpec.setTSPOptionSpec(tspSpec);
Document signedDoc = signClient.applyDocumentTimeStamp(inPDFDoc,addSigValidiationSpec);
//Save the signed PDF document
File outFile = new File("testout.pdf");
signedDoc.copyToFile (outFile);
}
catch (Exception ee)
{
ee.printStackTrace();
}
}
}
}