In my workflow I am trying to Deploy using OpenDeploy. After the files gets successfully deployed, the job is not getting transtioned to the End Task.
Here is the Workflow code:
<submittask name="Submit"
owner="__TAG__('iw_user');"
savecomments="t"
unlock="t"
description='Author Content Approval'>
__INSERT__("<areavpath v='$area_vpath'/>");
<successorset>
<succ v="Deployment"/>
</successorset>
<activation>
<pred v="Review"/>
</activation>
</submittask>
<externaltask name="Deployment"
owner="__TAG__('iw_user');"
description="Initiating Deployment to Deploy files.">
__INSERT__("<areavpath v='$area_vpath'/>");
<successors>
<successorset description="onDeploySuccess">
<succ v="End"/>
</successorset>
<successorset description="onDeployError">
<succ v="ErrorInDeployment"/>
</successorset>
</successors>
<command v="__INSERT__($deploy_command);"/>
<activation>
<or>
<pred v="Submit" />
<pred v="ErrorInDeployment" />
</or>
</activation>
</externaltask>
Can someone suggest where I am going wrong ?
Also find the complete Workflow Template and the associated ipl Files.
Regards
Sunil
Edited by sunil_j on 02/04/03 11:26 PM (server time).