Creating a DDX file to add a watermark

To create the WatermarkDDX file, use the New Assembly Descriptor wizard and select Dynamic Watermark Example. The DDX file content in the following example is particular to this example:
<DDX xmlns="http://ns.adobe.com/DDX/1.0/"> 
    !-- Apply a watermark to sourcePDF.  The watermark must be supplied at runtime 
    in the input map key "watermarkString". --> 
    <PDF result="Dynamic Watermark"> 
        <PDF source="sourcePDF"/> 
        <Watermark> 
            <StyledText> 
                <p> 
                    <String url="inputmap:///watermarkString"/> 
                </p> 
            </StyledText> 
        </Watermark> 
    </PDF> 
    <?ddx-source-hint name="sourcePDF"?> 
    <?ddx-source-hint name="watermarkString"?> 
</DDX>

// Ethnio survey code removed