Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This ActionHandler creates an XML at the time of execution and stores it in the file system.

...

Class

Code Block
com.dooris.bpm.actionhandler.CreateXMLByProcessVariableActionHandler

Parameter

Parameter

Default value

Description

Valid examples

xmlPath

The path under which the XML should be stored.

C:\formulare\output-xml

fileName

The file name of the XMl

f${processInstanceId}.xml

excludedVariables

Used to exclude variables

includedVariables

none

Used to include variables.If something is specified here, all variables which are not included are ignored during XML creation. 

variableEins,variableZwei

overwriteExisting

false

Overwrites an old XML if an XML already exists with this file name.

renameVariables

Renaming of variables in XML

processInsatanceId:Prozessinstanz

xmlFormat

normal

The possible values here are “normal” and “notNormal”. If “normal” is entered, the XML is built according to the following

<variable> <key>Prozessvariable</key> <value><![CDATA[Variablenwert]]></value> </variable>

otherwise:

<Prozessvariable>Variablenwert</Prozessvariable>

notNormal

root

processInstance

Root element of the XML.

document

...