Expand my Community achievements bar.

XML data empty after reader extending form

Avatar

Level 3

Hi,

I'm having a strange problem with Workspace and Process Management after reader extending a form.  The form is bound to a schema, and on an unextended form, the data passes from task to task with all entered information in tact. But as soon as I reader extend the form and deploy it into my application, after the initial submission all I have is a set of empty data:

<xdp:xdp xmlns:xdp="http://ns.adobe.com/xdp/">

    <xfa:datasets xmlns:xfa="http://www.xfa.org/schema/xfa-data/1.0/">

        <xfa:data>

            </ServiceRequestForm>

        </xfa:data>

    </xfa:datasets>

</xdp:xdp>

In the unextended version, ServiceRequestForm is full of data as passes from task to task.

My workspace start point Action Profile uses '/Process Management (system)/1.0/Submit PDF Form.process' to submit the form.  On the unextended form the Submit PDF Form process runs, but after extending the form it never runs (confirmed by the fact that it does not record the process on an extended form).  Unfortunately I cannot extend the form in the Action Profile itself.

Does anyone know why this might be happening, and what I can do to fix it?

Thanks,

K

1 Reply

Avatar

Level 10

If you deselect the Usage Rights option, do you get the form data correctly?

If not, the problem is on the prepare data process.

Just for the sake of testing, overwrite your xmlPrepareData process using the following XPATH and then reader extend your form.

/process_data/@xmlPrepareData = /process_data/taskContext/object/inputDocument

Nith