Quick Start (Java SwaRef): Encrypting a PDF document using the web service API

The following Java code example encrypts a PDF document named Loan.pdf with a password value of OpenPassword . The master password is PermissionPassword . The secured PDF document is saved as a PDF file named EncryptLoan.pdf . (See Encrypting PDF Documents with a Password .)

/** 
    * Ensure that you create Java proxy files that consume 
    * the Encryption services  WSDL. You can use JAX-WS to create 
    * the proxy Java files.   
    *  
    * For information, see "Invoking LiveCycle using SwaRef" in Programming with AEM forms.   
    */ 
 
import java.io.*; 
import java.io.InputStream; 
 
import javax.activation.DataHandler; 
import javax.activation.FileDataSource; 
import javax.xml.ws.BindingProvider; 
 
import com.adobe.idp.services.*; 
 
public class PasswordEncryptPDFSWAref { 
 
    public static void main(String[] args) { 
         
        try{ 
            // Setting configurations to retrieve the Web service 
            String url = "http://hiro-xp:8080/soap/services/EncryptionService?blob=swaRef"; 
            String username = "administrator"; 
            String password = "password"; 
             
            // Create the service Client objects needed 
            EncryptionServiceService encryptionService = new EncryptionServiceService(); 
            EncryptionService encryptionClient = encryptionService.getEncryptionService(); 
             
            // Retrieve the Web services from the forms server. 
            ((BindingProvider) encryptionClient).getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, url); 
            ((BindingProvider) encryptionClient).getRequestContext().put(BindingProvider.USERNAME_PROPERTY, username); 
            ((BindingProvider) encryptionClient).getRequestContext().put(BindingProvider.PASSWORD_PROPERTY, password); 
             
            //Get the PDF document 
            String path1 = "C:\\Adobe\Loan.pdf"; 
            FileDataSource ds1 = new FileDataSource(path1);  
            DataHandler handler1 = new DataHandler(ds1); 
            BLOB inDoc = new BLOB(); 
            inDoc.setSwaRef(handler1);         
 
            //Create a PasswordEncryptionOptionSpec object that stores encryption run-time values 
            PasswordEncryptionOptionSpec passSpec = new PasswordEncryptionOptionSpec(); 
             
            //Specify the PDF document resource to encrypt 
            passSpec.setEncryptOption(PasswordEncryptionOption.ALL); 
                         
            //Specify the Acrobat version 
            passSpec.setCompatability(PasswordEncryptionCompatability.ACRO_7); 
             
            //Specify the password values 
            passSpec.setDocumentOpenPassword("OpenPassword"); 
            passSpec.setPermissionPassword("PermissionPassword"); 
             
            //Encrypt the PDF document 
            BLOB encryptDoc = encryptionClient.encryptPDFUsingPassword(inDoc,passSpec);  
             
            //Create a new file containing the returned PDF document 
            File f = new File("C:\\Adobe\EncryptLoan.pdf"); 
            BLOB outBlob = encryptDoc; 
            DataHandler handler2 = outBlob.getSwaRef(); 
             
            //Get an InputStream from DataHandler and 
            //write to a file 
            InputStream inputStream = handler2.getInputStream(); 
            OutputStream out = new FileOutputStream(f); 
             
            //Iterate through the buffer 
            byte buf[] = new byte[1024]; 
            int len; 
            while ((len = inputStream.read(buf)) > 0) 
                out.write(buf, 0, len); 
            out.close(); 
            inputStream.close(); 
 
        }catch (Exception e) { 
            e.printStackTrace(); 
        } 
    } 
}

// Ethnio survey code removed