AEM Forms provides a set of OSGi services to accomplish different document level operations, for example, services to create, assemble, distribute, and archive PDF documents, add digital signatures to limit access to documents, and decode Barcoded Forms. These services are included in AEM Forms add-on package. Collectively, these services are known as document services. The list of available document services and their major capabilities is as below:
Assembler service: Enables you to combine, rearrange, and augment PDF and XDP documents and obtain information about PDF documents. It also helps convert and validate PDF documents to PDF/A standard, transforms PDF forms, XML forms, and PDF forms to PDF/A-1b, PDF/A-2b, and PDFA/A-3b. For more information, see Assembler Service.
ConvertPDF service: Enables you to convert PDF documents to PostScript or image files (JPEG, JPEG 2000, PNG, and TIFF). For more information, see ConvertPDF Service.
Barcoded Forms service: Enables you to extract data from electronic images of barcodes. The service accepts TIFF and PDF files that include one or more barcodes as input and extracts the barcode data. For more information, see Barcoded Forms Service.
DocAssurance service: Enables you to encrypt and decrypt documents, extend the functionality of Adobe Reader with additional usage rights, and add digital signatures to your documents. The Doc Assurance service contains three services: signature, encryption, and reader extension. For more information, see DocAssurance Service.
Encryption service: Enables you to encrypt and decrypt documents. When a document is encrypted, its contents become unreadable. An authorized user can decrypt the document to obtain access to its contents. For more information, see Encryption Service.
Forms service: Lets you create interactive data capture client applications that validate, process, transform, and deliver forms that are typically created in Forms Designer. The Forms service renders any form design that you develop to PDF documents. For more information, see Forms Service.
Output service: Enables you to create documents in different formats, including PDF, laser printer formats, and label printer formats. Laser printer formats are PostScript and Printer Control Language (PCL). For more information, see Output Service.
PDF Generator service: The PDF Generator service provides APIs to converts native file formats to PDF. It also converts PDF to other file formats and optimizes the size of PDF documents. For more information, see PDF Generator Service.
Reader Extension service: Enables your organization to easily share interactive PDF documents by extending the functionality of Adobe Reader with additional usage rights. The service activates features that are not available when a PDF document is opened using Adobe Reader, such as adding comments to a document, filling forms, and saving the document. For more information, see Reader Extension Service.
Signature service: Lets you work with digital signatures and documents on the AEM server. For example, the Signature service is typically used in the following situations:
The signature service accesses certificates and credentials that are stored in the trust store. For more information, see Signature Service.
AEM Forms is a powerful enterprise-class platform and the document services is only one of the capability of AEM Forms. For the complete list of capabilities, see Introduction to AEM Forms.
AEM Forms add-on package is an application deployed onto AEM. Generally, you require only one AEM instance (author or publish) to run AEM Forms document services. The following topology is recommended to run AEM Forms document services. For detailed information about topologies, see Architecture and deployment topologies for AEM Forms.
Although AEM Forms lets you set up and run all the functionalities from a single server, you should do capacity planning, load balancing, and set up dedicated servers for specific capabilities in a production environment. For example, for an environment using the PDF Generator service to convert thousands of pages a day and multiple adaptive forms to capture data, set up separate AEM Forms servers for the PDF Generator service and adaptive forms capabilities. It helps provide optimum performance and scale the servers independent of each other.
Before you begin to install and configure AEM Forms document services, ensure that:
Hardware and software infrastructure is in place. For a detailed list of supported hardware and software, see technical requirements.
Installation path of the AEM instance does not contain white-spaces.
An AEM instance is up and running. In AEM terminology, an “instance” is a copy of AEM running on a server in the author or publish mode. Generally, you require only one AEM instance (author or publish) to run AEM Forms document services:
Memory requirements are met. AEM Forms add-on package requires:
Client software required for PDF generator to perform conversion on Microsoft® Windows and Linux® are installed:
If you are using a UNIX-based operating system, install the following 32-bit packages from the installation media of the respective operating system:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(PDF Generator only) Install the 32-bit version of libcurl, libcrypto, and libssl libraries and create the below symlinks. The symlinks point to the latest version of the respective libraries:
(PDF Generator only) PDF Generator service supports WebKit and PhantomJS routes to convert HTML files to PDF documents. To enable conversion for PhantomJS route, install the below listed 64-bit libraries. Generally, these libraries are already installed. If any library is missing, install it manually:
Configurations listed in the pre-installation configurations section are applicable only to the PDF Generator service. If you are not configuring the PDF Generator service, you can skip the pre-installation configuration section.
If you are going use the PDF Generator service to convert native file formats such as Microsoft® Word, Microsoft® Excel, Microsoft® PowerPoint, OpenOffice, WordPerfect X7, and Adobe Acrobat to PDF Documents, ensure that these applications are installed on the AEM Forms Server.
After installing Acrobat, open Microsoft® Word. On the Acrobat tab, click Create PDF and convert a .doc or .docx file available on your machine to a PDF Document. If the conversion is successful, AEM Forms is ready to use Acrobat with PDF Generator service.
Set environment variables for 64-bit Java Development Kit, third-party applications, and Adobe Acrobat. The environment variables should contain the absolute path of the executable used to start the corresponding application, for example, the table below lists environment variables for a few applications:
Application |
Environment variable |
Example |
JDK (64-bit) |
JAVA_HOME |
C:\Program Files\Java\jdk1.8.0_74 |
Adobe Acrobat |
Acrobat_PATH |
C:\Program Files (x86)\Adobe\Acrobat 2015\Acrobat\Acrobat.exe |
Notepad |
Notepad_PATH |
C:\WINDOWS\notepad.exe |
OpenOffice |
OpenOffice_PATH |
C:\Program Files (x86)\OpenOffice.org4 |
All environment variables and respective paths are case-sensitive.
JAVA_HOME and Acrobat_PATH (Windows only) are mandatory environment variables.
The environment variable OpenOffice_PATH is set to the installation folder instead of the path to the executable.
Do not set up environment variables for Microsoft® Office applications such as Word, PowerPoint, Excel, and Project, or for AutoCAD. If these applications are installed on the server, the Generate PDF service automatically starts these applications.
On UNIX-based platforms, install OpenOffice as /root. If OpenOffice is not installed as root, the PDF Generator service fails to convert OpenOffice documents to PDF documents. If you are required to install and run OpenOffice as a non-root user, then provide sudo rights to the non-root user.
If you are using OpenOffice on a UNIX-based platform, run the following command to set the path variable:
export OpenOffice_PATH=/opt/openoffice.org4
Perform the following steps to configure IBM® SSL socket provider:
Create a copy of the java.security file. The default location of the file is [WebSphere_installation_directory]\Appserver\java_[version]\jre\lib\security
.
Open the copied java.security file for editing.
Change the default SSL socket factories to use the JSSE2 factories instead of default IBM® WebSphere® factories:
Default content:
#ssl.SocketFactory.provider=com.ibm.jsse2.SSLSocketFactoryImpl
#ssl.ServerSocketFactory.provider=com.ibm.jsse2.SSLServerSocketFactoryImpl
#WebSphere socket factories (in cryptosf.jar)
ssl.SocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLSocketFactory
ssl.ServerSocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLServerSocketFactory
Modified content:
ssl.SocketFactory.provider=com.ibm.jsse2.SSLSocketFactoryImpl
ssl.ServerSocketFactory.provider=com.ibm.jsse2.SSLServerSocketFactoryImpl
#WebSphere socket factories (in cryptosf.jar)
#ssl.SocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLSocketFactory
#ssl.ServerSocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLServerSocketFactory
To enable AEM Forms Server to use the updated java.security file, while starting the AEM Forms server, add the following java argument:
-Djava.security.properties= [path of newly created Java.security file].
Change the Microsoft® Office trust center settings to enable the PDF Generator service to convert files created with older versions of Microsoft® Office.
Open a Microsoft® Office application. For example, Microsoft® Word. Navigate to File> Options. The options dialog box appears.
Click Trust Center, and click Trust Center Settings.
In the Trust Center settings, click File Block Settings.
In the File Type list, deselect Open for the file type that the PDF Generator service should be allowed to convert to PDF documents.
The user account used to start the application server requires the Replace a process level token privilege. The local system account has the Replace a process level token privilege by default. For the servers running with a user of the Local Administrators group, the privilege must be granted explicitly. Perform the following steps to grant the privilege:
You can enable a non-administrator user to use the PDF Generator service. Normally, only users with administrative privileges can use the service:
To access the System Configuration Utility, go to Start > Run and then enter MSCONFIG.
Click the Tools tab and scroll down and select Change UAC Settings. Click Launch to run the command in a new window.
Adjust the slider to the Never notify level. When finished, close the command window and close the System Configuration window.
Verify that registry setting for UAC is set to 0 (zero). Perform the following steps to verify:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system\
. Ensure value of EnableLUA is set to 0 (zero).Restart your computer.
While converting a document to PDF using the PDF Generator service on Windows Server, occasionally, Windows Server reports that the executable has encountered a problem and must close. However, it does not impact the PDF conversion as it continues in the background.
To avoid receiving the error, you can disable the Windows error reporting. For more information on disabling error reporting, see https://technet.microsoft.com/en-us/library/cc754364.aspx.
The PDF Generator service provides WebKit, WebCapture, and PhantomJS routes or methods to convert HTML files to PDF documents. On Windows, to enable conversion for WebKit and Acrobat WebCapture routes, copy the Unicode font to %windir%\fonts directory.
Whenever you install new fonts to the fonts folder, restart the AEM Forms instance.
On UNIX-based platforms, the PDF Generator service supports WebKit and PhantomJS routes to convert HTML files to PDF documents. To enable HTML to PDF conversion, perform the following configurations, applicable to your preferred conversion route:
Copy the Unicode font to any of the following directories as appropriate for your system:
AEM Forms add-on package is an application deployed onto AEM. The package contains AEM Forms Document Services and other AEM Forms capabilities. Perform the following steps to install the package:
Open Software Distribution. You require an Adobe ID to log in to the Software Distribution.
Tap Adobe Experience Manager available in the header menu.
In the Filters section:
Tap the package name applicable to your operating system, select Accept EULA Terms, and tap Download.
Open Package Manager and click Upload Package to upload the package.
Select the package and click Install.
You can also download the package via the direct link listed in the AEM Forms releases article.
After the package is installed, you are prompted to restart the AEM instance. Do not immediately stop the server. Before stopping the AEM Forms Server, wait until the ServiceEvent REGISTERED and ServiceEvent UNREGISTERED messages stop appearing in the [AEM-Installation-Directory]/crx-quickstart/logs/error
.log file and the log is stable.
Stop the AEM instance. Navigate to the [AEM installation directory]\crx-quickstart\conf\ folder. Open the sling.properties file for editing.
If you use [AEM installation directory]\crx-quickstart\bin\start.bat
to start an AEM instance, edit the sling.properties located at [AEM_root]\crx-quickstart\
.
Add the following properties to the sling.properties file:
sling.bootdelegation.class.com.rsa.jsafe.provider.JsafeJCE=com.rsa.*
(AIX® only) Add the following properties to the sling.properties file:
sling.bootdelegation.xerces=org.apache.xerces.*
Save and close the file.
Log in to AEM Configuration Manager as an administrator.
Locate and open the CQ-DAM-Handler-Gibson Font Managers service. Specify the path of the System Fonts, Adobe Server Fonts, and Customer Fonts directories. Click Save.
Your right to use fonts provided by parties other than Adobe is governed by the license agreements provided to you by such parties with those fonts, and is not covered under your license to use Adobe software. Adobe recommends that you review and ensure that you are in compliance with all applicable non-Adobe license agreements before using non-Adobe fonts with Adobe software, particularly concerning use of fonts in a server environment.
When you install new fonts to the fonts folder, restart the AEM Forms instance.
A local user account is required to run the PDF Generator service. For steps to create a local user, see Create a user account in Windows or create a user account in UNIX-based platforms.
Open the AEM Forms PDF Generator Configuration page.
In the User Accounts tab, provide credentials of a local user account, and click Submit. If Microsoft® Windows prompts, allow access to the user. When added successfully, the configured user is displayed under the Your user accounts section in the User Accounts tab.
In AEM configuration manager, locate and open the Jacorb ORB Provider service.
Add the following to the Custom Properties.name field and click Save. It sets the pending reply timeout (also known as, CORBA client timeout) to 600 seconds.
jacorb.connection.client.pending_reply_timeout=600000
Log in to the AEM author instance and navigate to Adobe Experience Manager > Tools > Forms > Configure PDF Generator. The default URL is http://localhost:4502/libs/fd/pdfg/config/ui.html.
Open the General Configuration tab and modify the value of the following fields for your environment:
Field | Description | Default Value |
Server Conversion Timeout | A PDFG conversion stays active for the number of seconds defined in the Server Conversion timeout | 270 seconds |
PDFG Cleanup Scan Seconds | The number of seconds required to perform post-conversion operations. |
3600 seconds |
Job Expiration Seconds | Duration for which PDF Generator service is allowed to run a conversion. Ensure that the value of the Job Expiration Seconds is greater than the PDFG Cleanup Scan Seconds value. | 7200 seconds |
On Microsoft® Windows, the PDF Generator service uses Adobe Acrobat to convert supported file formats to a PDF document. Perform the following steps to configure Adobe Acrobat for the PDF Generator service:
Open Acrobat and select Edit> Preferences> Updater. In Check for updates, deselect Automatically install updates, and click OK. Close Acrobat.
Double-click a PDF document on your system. When Acrobat starts for the first time, the dialog boxes for Sign-in, Welcome screen, and EULA appear. Dismiss these dialog boxes for all the users configured to use PDF Generator.
Run the PDF Generator utility batch file to configure Acrobat for the PDF Generator service:
Open AEM Package Manager and download the adobe-aemfd-pdfg-common-pkg-[version].zip
file from the Package Manager.
Unzip the downloaded .zip file. Open the command prompt with administrative privileges.
Navigate to the [extracted-zip-file]\jcr_root\etc\packages\day\cq60\fd\adobe-aemds-common-pkg-[version]\jcr_root\etc\packages\day\cq60\fd\
Unzip the adobe-aemfd-pdfg-common-pkg-[version]
.
Navigate to the [downloaded-adobe-aemfd-pdfg-common-pkg]\jcr_root\libs\fd\pdfg\tools\adobe-aemfd-pdfg-utilities-[version]
directory. Run the following batch file:
Acrobat_for_PDFG_Configuration.bat
Acrobat is configured to run with the PDF Generator service.
Run System Readiness Tool (SRT) to validate Acrobat installation.
The PDF Generator service provides multiple routes to convert HTML files to PDF documents: Webkit, Acrobat WebCapture (Windows only), and PhantomJS. Adobe recommends using PhantomJS route because it has the capability to handle dynamic content and has no dependencies on 32-bit libraries or requires no extra fonts. Also, PhantomJS route does not require sudo or root access to run the conversion.
The default primary route for HTML to PDF conversion is Webkit. To change the conversion route:
On AEM author instance, navigate to Tools> Forms> Configure PDF Generator.
In the General Configuration tab, select the preferred conversion route from the Primary Route for HTML to PDF conversions drop-down.
Using the Trust Store Management, you can import, edit, and delete certificates that you trust on the server for validation of digital signatures and certificate authentication. You can import and export any number of certificates. After a certificate is imported, you can edit the trust settings and trust store type. Perform the following steps to initialize a trust store:
The DocAssurance service can apply usage rights to PDF documents. To apply usage rights to PDF documents, configure the certificates.
Before setting up the certificates, ensure that you have a:
Certificate file (.pfx).
Private Key password provided with the certificate.
Private Key Alias. You can execute the Java keytool command to view the Private Key Alias:
keytool -list -v -keystore [keystore-file] -storetype pkcs12
Keystore file password. If you are using Adobe’s Reader Extensions certificate, the Keystore file password is always the same as Private Key password.
Perform the following steps to configure the certificates:
Log in to AEM Author instance as an administrator. Go to Tools > Security > Users.
Click the name field of the user account. The Edit User Settings page opens. On the AEM Author instance, certificates reside in a KeyStore. If you have not created a KeyStore earlier, click Create KeyStore and set a new password for the KeyStore. If the server already contains a KeyStore, skip this step. If you are using Adobe’s Reader Extensions certificate, the Keystore file password is always the same as Private Key password.
On the Edit User Settings page, select the KeyStore tab. Expand the Add Private Key from Key Store file option and provide an alias. The alias is used to perform the Reader Extensions operation.
To upload the certificate file, click Select Key Store File and upload a <filename>.pfx file.
Add the Key Store Password, Private Key Password, and Private Key Alias that is associated with the certificate to the respective fields. Click Submit.
In the production environment, replace your evaluation credentials with production credentials. Ensure that you delete your old Reader Extensions credentials, before updating an expired or evaluations credential.
Click Save & Close on the Edit User Settings page.
To use AES 256 encryption for PDF files, obtain and install the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy files. Replace the local_policy.jar and US_export_policy.jar files in the jre/lib/security folder. For example, if you are using Sun JDK, copy the downloaded files to the [JAVA_HOME]/jre/lib/security
folder.
The Assembler service depends on the Reader Extensions service, Signature service, Forms service, and Output service. Perform the following steps to verify that the required services are up and running:
https://'[server]:[port]'/system/console/bundles
as an administrator.Service Name | Bundle Name |
---|---|
Signatures Service | adobe-aemfd-signatures |
Reader Extensions Service | com.adobe.aemfd.adobe-aemfd-readerextensions |
Forms Service | com.adobe.livecycle.adobe-lc-forms-bedrock-connector |
Output Service | com.adobe.livecycle.adobe-lc-forms-bedrock-connector |
The HTML to PDF conversion fails if a zipped input file contains HTML files with double-byte characters in filenames. To avoid this problem, do not use double-byte characters when naming HTML files.
On UNIX-based operating systems, do the following to find any missing libraries:
Navigate to [crx-repository]/bedrock/svcnative/HtmlToPdfSvc/bin/
.
Run the following command to list all libraries that PhantomJS requires for HTML to PDF conversion.
ldd phantomjs
Run the following command to list missing libraries.
ldd phantomjs | grep not
Manually install the missing libraries.
The System Readiness tool checks if the machine is configured properly to run PDF Generator conversions. The tool generates report at the specified path. To run the tool:
Open command prompt. Navigate to the [extracted-adobe-aemfd-pdfg-common-pkg]\jcr_root\libs\fd\pdfg\tools
folder.
Run the following command from the command prompt:
java -jar forms-srt-[version].jar [Path_of_reports_folder] en
The command generates report and also creates the srt_config.yaml file. You can use it to configure options for SRT tool. It is optional to configure options for SRT tool.
[extracted-adobe-aemfd-pdfg-common-pkg]\jcr_root\libs\fd\pdfg\tools\adobe-aemfd-pdfg-utilities-[version]\plugins\x86_win32
directory to the [Acrobat_root]\Acrobat\plug_ins
directory.Navigate to [Path_of_reports_folder]
. Open the SystemReadinessTool.html file. Verify the report and fix the mentioned issues.
You can use the srt_config.yaml file to configure various settings for the SRT tool. The format of the file is:
# =================================================================
# SRT Configuration
# =================================================================
#Note - follow correct format to avoid parsing failures
#for example, <param name>:<space><param value>
#locale: (mandatory field)Locale to be used for SRT. Supported locales [en/fr/de/ja].
locale: en
#aemTempDir: AEM Temp direcotry
aemTempDir:
#users: provide PDFG converting users list
#users:
# - user1
# - user2
users:
#profile: select profile to run specific checks. Choose from [LCM], more will be added soon
profile:
#outputDir: directory where output files will be saved
outputDir:
If you face issues even after fixing all the problems reported by SRT tool, perform the following checks:
Before performing the following checks, ensure that System Readiness Tool does not report any error.
Microsoft® Windows
Linux®
Install the supported version of OpenOffice. AEM Forms supports both 32-bit and 64-bit versions. After installing, open all the OpenOffice applications, cancel all the dialog windows, and close the applications. Reopen the applications and ensure that no dialog box is displayed on opening an OpenOffice application.
Create an environment variable OpenOffice_PATH
and set it to point it to OpenOffice installation is set in the console or the dt (Device Tree) profile.
If there are issues in installing OpenOffice, ensure that 32-bit libraries required for OpenOffice installation are available.
Linux and Solaris (PhantomJS conversion route)
Ensure that 32-bit library is available (libicudata.so.42) for Webkit based HTMLToPDF conversion and 64-bit (libicudata.so.42 libs are available for PhantomJS based HTMLToPDF conversion.
Run the following command to list missing libraries for phantomjs:
ldd phantomjs | grep not
Linux® and Solaris™ (WebKit conversion route)
Ensure that the directories /usr/lib/X11/fonts
and /usr/share/fonts
exist. If the directories do not exist, create a symbolic link from /usr/share/X11/fonts
to /usr/lib/X11/fonts
and another symbolic link from /usr/share/fonts
to /usr/share/X11/fonts
.
ln -s /usr/share/fonts /usr/share/X11/fonts
ln -s /usr/share/X11/fonts /usr/lib/X11/fonts
Ensure that IBM fonts are copied under usr/share/fonts.
Ensure that ghost vulnerability fix glibc is available on the machine. Use your default package manager to update to the latest version of glibc. It includes ghost vulnerability fix.
Ensure that the latest versions of 32-bit lib curl, libcrypto, and libssl libraries are installed on the system. Also create symlinks /usr/lib/libcurl.so
(or libcurl.a for AIX®), /usr/lib/libcrypto.so
(or libcrypto.a for AIX®) and /usr/lib/libssl.so
(or libssl.a for AIX®) pointing to the latest versions (32-bit) of respective libraries.
Perform the following steps for IBM® SSL Socket provider:
Copy the java.security file from <WAS_Installed_JAVA>\jre\lib\security
to any location on your AEM Forms Server. The default location is Default Location is = <WAS_Installed>\Appserver\java_[version]\jre\lib\security
.
Edit the java.security file at the copied location and change the default SSL Socket factories with JSSE2 factories (Use JSSE2 factories instead of WebSphere®).
Change the following default JSSE socket factories:
#ssl.SocketFactory.provider=com.ibm.jsse2.SSLSocketFactoryImpl
#ssl.ServerSocketFactory.provider=com.ibm.jsse2.SSLServerSocketFactoryImpl
WebSphere socket factories (in cryptosf.jar)
ssl.SocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLSocketFactory
ssl.ServerSocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLServerSocketFactory
with
ssl.SocketFactory.provider=com.ibm.jsse2.SSLSocketFactoryImpl
ssl.ServerSocketFactory.provider=com.ibm.jsse2.SSLServerSocketFactoryImpl
WebSphere socket factories (in cryptosf.jar)
#ssl.SocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLSocketFactory
#ssl.ServerSocketFactory.provider=com.ibm.websphere.ssl.protocol.SSLServerSocketFactory
For Microsoft® Office and OpenOffice, perform at least one conversion manually (as each user) to ensure that no dialogue pops up during conversion. If any dialogue appears, dismissed it. No such dialogue should appear during automated conversion.
Before running automation on an AEM Forms on OSGi environment, ensure that the test package is installed and active.
Verify the server logs to check if the conversion is failing for a particular user.(Process Explorer can help you check running process for different users)
Ensure that the user configured for PDF Generator has local admin rights.
Ensure that PDF Generator user has read, write, and execute permissions on LC temp and PDFG temp users.
For Microsoft® Office and OpenOffice, perform at least one conversion manually (as each user) to ensure that no dialogue pops up during conversion. If any dialogue appears, dismissed it. No such dialogue should appear during automated conversion.
Perform a sample conversion.
If you have an existing license of Adobe Acrobat and it has expired, Download the latest version of Adobe Application Manager, and migrating your serial number. Before migrating your serial number.
Use the following commands to generate prov.xml and reserialize the existing install using the prov.xml file instead of commands provided in migrating your serial number number article.
```
adobe_prtk --tool=VolumeSerialize --generate --serial=<serialnum> [--leid=<LEID>] [--regsuppress=ss] [--eulasuppress] [--locales=limited list of locales in xx_XX format or ALL>] [--provfile=<Absolute path to prov.xml>]
```
Volume serialize the package (Re-serialize the existing install using the prov.xml file and the new serial): Run the following command from the PRTK installation folder as an administrator to serialize and activate the deployed packages on client machines:
```
adobe_prtk --tool=VolumeSerialize --provfile=C:\prov.xml –stream
```
For large-scale installations, use the Acrobat Customization Wizard to remove previous versions of Reader and Acrobat. Customize the installer and deploy it to all the machines of your organization.
When user tries to convert Word or Excel files to PDF on Microsoft Windows Server, the following error is encountered as:
Error message from the primary converter:
ALC-PDG-015-003-The system cannot open the input file. Please submit your file again or contact your system administrator.
To resolve the issue, see Unable to convert Word or Excel file to PDF on Windows Server.
You have a working AEM Forms document services environment. You can use document services through: