Avatar

Level 8

Try breaking the conversion and RE steps into two distinct parts.  You can do this with one DDX by using the result of one step as the source for another:

<DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="tempDoc">
        <PDF source="doc1"/>       
    </PDF>
    <PDF result="outDoc">
       <PDF source="tempDoc"/>
        <ReaderRights credentialAlias="my magic key"
formFillIn="true" formDataImportExport="true" comments="true" mode="Draft"/>
    </PDF>
</DDX>