Basic workflow query
Hi,
I am trying to test how workflow works. I have created a button in the form to initiate workflow. The workflow contains simple start email notification -- End. So everytime I click the button it should send email notification.
<!-- MemberObjectGroups="#ID#Top" createDate="Thu Jul 06 17:17:03 CDT 2006" id="#ID#4CD857A30347C2E8:-3462B76:10C453E9D70:-7FF4" name="P1-WF1" visibility="runschedule"-->
<TaskDefinition id='#ID#4CD857A30347C2E8:-3462B76:10C453E9D70:-7FF4' name='P1-WF1' lock='Configurator#1152287891764' creator='Configurator' createDate='1152224223915' lastModifier='Configurator' lastModDate='1152287591718' lastMod='94' taskType='Workflow' executor='com.waveset.workflow.WorkflowExecutor' suspendable='true' syncControlAllowed='true' execMode='sync' execLimit='0' resultLimit='0' resultOption='delete' visibility='runschedule' progressInterval='0'>
<Extension>
<WFProcess name='P1-WF1' maxSteps='0'>
<Activity id='0' name='Start'>
<Transition to='Email Notification'/>
<WorkflowEditor x='175' y='22'/>
</Activity>
<Activity id='1' name='End'>
<WorkflowEditor x='376' y='383'/>
</Activity>
<Activity id='2' name='Email Notification'>
<Action id='0' application='com.waveset.provision.WorkflowServices'>
<Argument name='op' value='notify'/>
</Action>
<Transition to='End'/>
<WorkflowEditor x='376' y='224'/>
</Activity>
<WFProcess name='process1' maxSteps='0'>
</WFProcess>
</WFProcess>
</Extension>
<MemberObjectGroups>
<ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
</MemberObjectGroups>
<Properties>
<Property name='editorOriginalName' value='P1-WF1'/>
</Properties>
</TaskDefinition>
Now if I initiate the workflow I should get sometext in notification.txt file as I configured the same in properties file. But after clicking I get the option for launch process and it doesn't show any process. Just wondering what needs to be configured to test simple workflow like this to start with.

