Workflow progress graphic?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2011 12:49 PM
jBPM5 has a nifty feature where you can see a workflow in progress and it will show you a graphic of the workflow and show you what node (or nodes) the workflow is on. I know Activiti can show you which workflows are in progress, but I haven't seen a graphical feature like this. Does Activiti have this feature, and, if not, is it a planned feature for sometime in the future?
Thanks in advance!
Thanks in advance!
Labels:
- Labels:
-
Archive
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2011 03:01 PM
Yes, Activiti has the same.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-20-2011 05:08 PM
Yes, Activiti has the same.I was interested to know about this utility too. Could you point to the documentation or how to launch the utility?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2011 08:27 AM
there is no 'utility' it's in the Activiti Explorer
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-21-2011 10:08 AM
Hi,
Ready to use it in a Primefaces <p:graphicImage />:
Regards,
michael
Ready to use it in a Primefaces <p:graphicImage />:
public StreamedContent getProcessImage() {
String processDefinitionId = taskService.createTaskQuery().taskId(getCurrentTaskId()).singleResult()
.getProcessDefinitionId();
String processInstanceId = taskService.createTaskQuery().taskId(getCurrentTaskId()).singleResult()
.getProcessInstanceId();
ProcessDefinitionEntity processDefinitionEntity = (ProcessDefinitionEntity) ((RepositoryServiceImpl) repositoryService)
.getDeployedProcessDefinition(processDefinitionId);
InputStream imageStream = ProcessDiagramGenerator.generateDiagram(processDefinitionEntity, "png",
runtimeService.getActiveActivityIds(processInstanceId));
return new DefaultStreamedContent(imageStream, "image/png");
}
Regards,
michael
