create workflow

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2015 11:01 AM
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
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
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2015 12:49 AM
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://serverIP
ort/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>
* 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://serverIP

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>
