How To Reuse the Task Flow Application with Multiple Human Tasks

  1. Open the TASKFLOW_PROJ_DIR\adfmsrc\hwtaskflow.xml file.
  2. For each additional human task, add the following element inside the file (at the bottom just before </hwTaskFlows>):
    <hwTaskFlow>
      <WorkflowName>$TASK_NAME</WorkflowName>
      <TaskDefinitionNamespace>$TASK_NAMESPACE</TaskDefinitionNamespace>
      <TaskFlowId>$TASK_FLOW_NAME</TaskFlowId>
      <TaskFlowFileName>$TASK_FLOW_FILENAME</TaskFlowFileName>
    </hwTaskFlow
    

    where:

    • $TASK_NAME is replaced with the name of the human task inside the .task file (value of the <name> element).

    • $TASK_NAMESPACE is replaced with the namespace of the human task inside the .task file (value of the attribute targetNameSpace of element <taskDefinition>).

    • $TASK_FLOW_NAME is copied from the existing <hwTaskFlow>/<TaskFlowId> element.

    • $TASK_FLOW_FILENAME is copied from the existing <hwTaskFlow>/<TaskFlowFileName> element.