cancel
Showing results for 
Search instead for 
Did you mean: 

create workflow

michaelworzyk
Champ in-the-making
Champ in-the-making
Hi,
I have created a new workflow with eclipse and activiti. The xml-file is called .bpmn
How can I upload such a file to alfresco and how can I use it?
Thank you very much in advance for an answer.
Michael
1 REPLY 1

muralidharand
Star Contributor
Star Contributor
There are three approaches to deploy it.
* Activiti-admin Console
* Workflow Console
* WorkflowDeployer bean.


<strong>* Activiti-admin Console </strong>
  This is an enterprise edition feature. If you've Alfresco enterprise edition, then go to http://serverIPSmiley Tongueort/alfresco/activiti-admin

  Documentation page: http://docs.alfresco.com/4.2/concepts/wf-activiti-workflow-console.html

<strong> * Workflow Console</strong>
  You've to use, workflow deploy command to deploy the workflow.
  WIKI Page : https://wiki.alfresco.com/wiki/Workflow_Console

  Example: deploy activiti alfresco\module\workflowfile.bpmn20.xml


<strong>* WorkflowDeployer bean </strong>
<?xml version='1.0' encoding='UTF-8'?><!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'><beans>   <bean id="External.password.reset.workflowBootstrap" parent="workflowDeployer">      <property name="workflowDefinitions">         <list>                           <props>               <prop key="engineId">activiti</prop>               <prop key="location">alfresco/module/workflowfile.bpmn20.xml</prop>               <prop key="mimetype">text/xml</prop>               <prop key="redeploy">false</prop>            </props>                          </list>      </property>   </bean></beans>‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍