AEM 6.4 has reached the end of extended support and this documentation is no longer updated. For further details, see our technical support periods. Find the supported versions here.
You can programmatically validate a DDX document that is used by the Assembler service. That is, using the Assembler service API, you can determine whether or not a DDX document is valid. For example, if you upgraded from a previous AEM Forms version and you want to ensure that your DDX document is valid, you can validate it using the Assembler service API.
For more information about the Assembler service, see Services Reference for AEM Forms.
For more information about a DDX document, see Assembler Service and DDX Reference.
To validate a DDX document, perform the following tasks:
Include project files
Include the necessary files in your development project. If you are creating a client application by using Java, include the necessary JAR files. If you are using web services, ensure that you include the proxy files.
The following JAR files must be added to your project’s class path:
if AEM Forms is deployed on a supported J2EE application server other than JBoss, you must replace the adobe-utilities.jar and jbossall-client.jar files with JAR files that are specific to the J2EE application server that AEM Forms is deployed on.
Create a PDF Assembler client
Before you can programmatically perform an Assembler operation, you must create an Assembler service client.
Reference an existing DDX document
To validate a DDX document, you must reference an existing DDX document.
Set run-time options to validate the DDX document
When validating a DDX document, you must set specific run-time options that instruct the Assembler service to validate the DDX document as opposed to executing it. Also, you can increase the amount of information that the Assembler service writes to the log file.
Perform the validation
After you create the Assembler service client, reference the DDX document, and set run-time options, you can invoke the invokeDDX
operation to validate the DDX document. When validating the DDX document, you can pass null
as the map parameter (this parameter usually stores PDF documents that the Assembler requires to perform the operation(s) specified in the DDX document).
If validation fails, an exception is thrown and the log file contains details that explains why the DDX document is invalid can be obtained from the OperationException
instance. Once past the basic XML parsing and schema checking, then the validation against the DDX specification is performed. All errors that are located in the DDX document are specified in the log.
Save the validation results in a log file
The Assembler service returns the validation results that you can write to a XML log file. The amount of detail that the Assembler service writes to the log file depends on the run-time option that you set.
See also
Validate a DDX document using the Java API
Validate a DDX document using the web service API
Including AEM Forms Java library files
Programmatically Assembling PDF Documents
Validate a DDX document by using the Assembler Service API (Java):
Include project files.
Include client JAR files, such as adobe-assembler-client.jar, in your Java project’s class path.
Create a PDF Assembler client.
ServiceClientFactory
object that contains connection properties.AssemblerServiceClient
object by using its constructor and passing the ServiceClientFactory
object.Reference an existing DDX document.
java.io.FileInputStream
object that represents the DDX document by using its constructor and passing a string value that specifies the location of the DDX file.com.adobe.idp.Document
object by using its constructor and passing the java.io.FileInputStream
object.Set run-time options to validate the DDX document.
AssemblerOptionSpec
object that stores run-time options by using its constructor.AssemblerOptionSpec
object’s setValidateOnly method and passing true
.AssemblerOptionSpec
object’s getLogLevel
method and passing a string value meets your requirements. When validating a DDX document, you want more information written to the log file that will assist in the validation process. As a result, you can pass the value FINE
or FINER
.Perform the validation.
Invoke the AssemblerServiceClient
object’s invokeDDX
method and pass the following values:
com.adobe.idp.Document
object that represents the DDX document.null
for the java.io.Map object that usually stores PDF documents.com.adobe.livecycle.assembler.client.AssemblerOptionSpec
object that specifies the run-time options.The invokeDDX
method returns an AssemblerResult
object that contains information that specifies whether the DDX document is valid.
Save the validation results in a log file.
java.io.File
object and ensure that the file name extension is .xml.AssemblerResult
object’s getJobLog
method. This method returns a com.adobe.idp.Document
instance that contains validation information.com.adobe.idp.Document
object’s copyToFile
method to copy the contents of the com.adobe.idp.Document
object to the file.If the DDX document is invalid, an OperationException
is thrown. Within the catch statement, you can invoke the OperationException
object’s getJobLog
method.
See also
Quick Start (SOAP mode): Validating DDX documents using the Java API (SOAP mode)
Including AEM Forms Java library files
Validate a DDX document by using the Assembler Service API (web service):
Include project files.
Create a Microsoft .NET project that uses MTOM. Ensure that you use the following WSDL definition: http://localhost:8080/soap/services/AssemblerService?WSDL&lc_version=9.0.1
.
Replace localhost with the IP address of the forms server.
Create a PDF Assembler client.
Create an AssemblerServiceClient
object by using its default constructor.
Create an AssemblerServiceClient.Endpoint.Address
object by using the System.ServiceModel.EndpointAddress
constructor. Pass a string value that specifies the WSDL to the AEM Forms service (for example, http://localhost:8080/soap/services/AssemblerService?blob=mtom
). You do not need to use the lc_version
attribute. This attribute is used when you create a service reference.
Create a System.ServiceModel.BasicHttpBinding
object by getting the value of the AssemblerServiceClient.Endpoint.Binding
field. Cast the return value to BasicHttpBinding
.
Set the System.ServiceModel.BasicHttpBinding
object’s MessageEncoding
field to WSMessageEncoding.Mtom
. This value ensures that MTOM is used.
Enable basic HTTP authentication by performing the following tasks:
AssemblerServiceClient.ClientCredentials.UserName.UserName
.AssemblerServiceClient.ClientCredentials.UserName.Password
.HttpClientCredentialType.Basic
to the field BasicHttpBindingSecurity.Transport.ClientCredentialType
.BasicHttpSecurityMode.TransportCredentialOnly
to the field BasicHttpBindingSecurity.Security.Mode
.Reference an existing DDX document.
BLOB
object by using its constructor. The BLOB
object is used to store the DDX document.System.IO.FileStream
object by invoking its constructor and passing a string value that represents the file location of the DDX document and the mode to open the file in.System.IO.FileStream
object. You can determine the size of the byte array by getting the System.IO.FileStream
object’s Length
property.System.IO.FileStream
object’s Read
method and passing the byte array, the starting position, and the stream length to read.BLOB
object by assigning its MTOM
property with the contents of the byte array.Set run-time options to validate the DDX document.
AssemblerOptionSpec
object that stores run-time options by using its constructor.AssemblerOptionSpec
object’s validateOnly
data member.AssemblerOptionSpec
object’s logLevel
data member. method When validating a DDX document, you want more information written to the log file that will assist in the validation process. As a result, you can specify the value FINE
or FINER
. For information about the run-time options that you can set, see the AssemblerOptionSpec
class reference in AEM Forms API Reference.Perform the validation.
Invoke the AssemblerServiceClient
object’s invokeDDX
method and pass the following values:
BLOB
object that represents the DDX document.null
for the Map
object that usually stores PDF documents.AssemblerOptionSpec
object that specifies run-time options.The invokeDDX
method returns an AssemblerResult
object that contains information that specifies whether the DDX document is valid.
Save the validation results in a log file.
System.IO.FileStream
object by invoking its constructor and passing a string value that represents the file location of the log file and the mode to open the file in. Ensure that the file name extension is .xml.BLOB
object that stores log information by getting the value of the AssemblerResult
object’s jobLog
data member.BLOB
object. Populate the byte array by getting the value of the BLOB
object’s MTOM
field.System.IO.BinaryWriter
object by invoking its constructor and passing the System.IO.FileStream
object.System.IO.BinaryWriter
object’s Write
method and passing the byte array.If the DDX document is invalid, an OperationException
is thrown. Within the catch statement, you can get the value of the OperationException
object’s jobLog
member.
See also