After initiating workflows, workflows are getting stuck in between the tasks. These tasks are mainly external task so they don’t require any user input. We restarted the server and the issue got solved. But many workflows which we initiated before restarting the server are still in the same external task position. Is their any way to make them work? Or just do "End Job" and initiate the workflows again.Thanks,JanviTeamsite 6.1
task.chooseTransition(nextTransition,comment);
HiIf after External Task,wf got stuck then one possible reason can be that you haven't set callBack(in case of perl) or NextTransition (in case of java).Like in case of Java we have task.chooseTransition(nextTransition,comment); Check for them in your ipl or java.
Earlier these workflows used to work fine and after restarting the machine none of the external tasks are getting stuck. Problem is not with external task it was some server problem because of which workflows used to get stuck which is solved now.But few workflows which we initiated before restarting the server are still stuck. I want a solution to make them work.
You can use the following:iwcallback taskID returnCodewhere - taskID - Specifies the task id of the task stuckedreturnCode - An integer representing the successor number as per workflow starting from 0HTH
Thanks a lot. But can you please tell me the way to write in command prompt in order to exceute it. I tried in the following way but its is giving problem.d:iw-home\iw-perl\bin\iwperl callback 167848 0
iwcallback in a Command line Tool not a perl executable. You just need to call the command from iw-home/bin directory.d:\iw-home\bin\iwcallback 167848 0HTH