Monday, October 01, 2007

Reinstall TaskManager / TaskActionHandler processes

Working with the BPEL process manager you deploy and undeploy processes from JDeveloper or via your own build system. Undeployment is mostly done via BPEL console, by selecting each process after each other, or select multiple processes at once.

But a mistake could be made, that you undeploy one of the two process that are supplied by default.
  • TaskActionHandler
  • TaskManager
After you undeploy these processes they can not be restored via the BPEL console. To restore these processes you do the following steps.

copy the two files from directory $ORACLE_HOME/bpel/install/extensions/ to the deployment directory of your domain.

cd $ORACLE_HOME/bpel/install/extensions
cp bpel_TaskActionHandler_1.0.jar
$ORACLE_HOME/bpel/domains/default/deploy
cp bpel_TaskManager_1.0.jar
$ORACLE_HOME/bpel/domains/default/deploy

Post a Comment