cancel
Showing results for 
Search instead for 
Did you mean: 

Deploying XML workflow in alfresco community 4.2

bhashitha
Champ in-the-making
Champ in-the-making
Hi Guyz,

I am trying to deploy the following test workflow definition in alfresco, since from 2 dayz Smiley Sad


<?xml version="1.0" encoding="UTF-8"?>
<process-definition xmlns="urn:jbpm.org:jpdl-3.1"
name="helloWorld">
<start-state name="start">
<transition name="" to="hello"></transition>
</start-state>
<node name="hello">
<transition name="" to="end1">
<action class="org.alfresco.repo.workflow.jbpm.
AlfrescoJavaScript">
<script>
logger.log("Hello World!");
</script>
</action>
</transition>
</node>
<end-state name="end1"></end-state>
</process-definition>


But when im going to deploy the above workflow definition in alfresco community 4.2 through "work-flow.jsp, it gives me following error message.

"org.alfresco.service.cmr.workflow.WorkflowException: 03200027 Workflow Component for engine id 'jbpm' is not registered"

Please Help !
1 REPLY 1

rajeshavatani
Champ in-the-making
Champ in-the-making
By default the jBPM workflow engine is disabled from Alfresco 4 release.
You can enable it by setting the following properties in alfresco-global.properties file

system.workflow.engine.jbpm.enabled=true
system.workflow.engine.jbpm.definitions.visible=true