Alfresco Archive
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Async multi instance runs in 1 transaction

Hello,We use Spring 3.2 and Activiti 5.17. Our transactionmanager has a timeout of 5 seconds. We have a multi-instance for 3 items and each item starts with an exclusive gateway check. This read-only check takes 2 seconds. We would expect that every ...

stainii by Champ in-the-making
  • 668 Views
  • 4 replies
  • 0 kudos

creating rest support in my web application.

I have made rest calls by deploying activiti-rest war in tomcat and invoking the url from my web application by url = new URI("http://localhost:8081/activiti-rest/service/identity/users");‍Now i dont want to deploy the activiti-rest as a different we...

Get current process instance status - receive task

Hello everyone,i'm designing a backend for an application using activiti and i have a small problem. My BPM is composed of userTask, receiveTask and serviceTask, so i'd like to display to the user the "status" of a process he started, i.e. the docume...

lestat86 by Champ in-the-making
  • 711 Views
  • 1 replies
  • 0 kudos

How to pass args to Service task

Hi all, I need to pass a custom object as arguments to a Service Task defined with type "Expression".Assuming the expression is #{myTask.doStuff(arg)}‍, how can I do that?Below the bean interfaceublic class MyTask{…    public Integer doStuff(MyClass ...

alef by Champ in-the-making
  • 188 Views
  • 1 replies
  • 0 kudos

comment request author properties

I found that CommentRequest has author property but even if set value not seem to save database.Please tell me how to set comment author  when use rest api.Also AttachmentRequest how to set value of ACT_HI_ATTACHMENT 's user id field when use rest ap...

nekojiru by Champ in-the-making
  • 187 Views
  • 1 replies
  • 0 kudos

Timer boundary event not supported for Service Task?

Hi, I have learned in my own testings (jobExecutorActivate=true) and from the forums that timer boundary event is not supported for service task.  Can anyone confirm?   This will impact us significantly because most of our flow components are service...

xjshangguan by Champ in-the-making
  • 1799 Views
  • 11 replies
  • 0 kudos

Programmatically add an execution listener

I need to send out a generic notification every time a process ends. I dont want to require all my users to add an execution listener to the end event and call my java code. Seems very redundant. I would much rather do that on my side. Ideally if I c...

jorell by Champ in-the-making
  • 479 Views
  • 4 replies
  • 0 kudos

Can I view the whole preview pane in My Instance

Hi,I was wondering if there was a way to view large diagrams in the preview flow so I can see which step my flow is in. Currently my diagram is too wide to fit and id like to scroll to the right to view it all.Thanks

zlatan316 by Champ on-the-rise
  • 424 Views
  • 4 replies
  • 0 kudos

Activiti 5.16.3 deployment to Websphere 7

We're getting following the errors on the Activiti login screen when I deployed activiti on Websphere.  We tried to add the manger session in context.xml but it didn't fix the issue. <?xml version="1.0" encoding="UTF-8"?><Context antiJARLocking="true...

apple4life by Champ in-the-making
  • 504 Views
  • 4 replies
  • 0 kudos

Activiti vs Bonita

Hi,I need to make a proposition of a BPM tool to my customer. I was shearching for an uptodate comparaison between Activiti and Bonita. But no recent comparaison I could find…I love Spring and Apache license, but there's any other valuable arguments ...

fajer by Champ in-the-making
  • 1064 Views
  • 1 replies
  • 0 kudos

Suspend process via JMX

Hi,in the past we used the Activiti Karaf Commands to suspend or kill running processes. So far as I know this was not an official extension to manage the ProcessEngine.  Are there plans to provide such a management extension?

mpriess by Champ in-the-making
  • 203 Views
  • 1 replies
  • 0 kudos

Migration from IBM WPS to activiti

Hi , We are planning to migrate the existing application from  IBM WPS to Activiti Business process Engine .The application which is current using the IMB WPS is not fully automated with the business process but most of the Human work flows are used ...

usai by Champ in-the-making
  • 313 Views
  • 1 replies
  • 0 kudos

Group selection form field

Hi everyone,We can use this code snippet to create a user selection field:<activiti:formProperty id="revisor" name="Revisor" type="user"></activiti:formProperty>Is there a type that allows selecting a group ? something like  'type="group"' ?Thanks!

External form rendering : Form properties values listing

Hi all,I’m working on a workaround to migrate from jpdl outgoing transitions to BPMN 2 (human task + Exclusive gateway)My need: * Provide a form display; give user a choice to decide next step (outgoing sequence flow).* Choice must be "by design" emb...

fredg by Champ in-the-making
  • 2142 Views
  • 11 replies
  • 0 kudos

UI customization

Hi,Is there a way for customizing the form fields, buttons, look & feel (applying styles, css), etc.I need it very rigorously.  Any help will be much appreciated.Thanks in advance.Regards,Nirvana

nirvana by Champ in-the-making
  • 1687 Views
  • 6 replies
  • 0 kudos

Apply Activiti for old project

We have flowstart -> service task1 (object A state 1)-> user task 1 ->service task 2 (Object A change to state 2)-> user task2 -> …. Currently, our project is not apply workflow. If now apply Activiti, the flow for Object A should start at service ta...

Add process variable

Hi,I have flow like this: ServiceTask 1 (return object A have fields A1,A2) -> ServiceTask 2 (need A2). How can I add A2 to flow ?I try runtimeService.setVariable(processInstance.getId(), A2,A2Value) but when flow has not yet user task, processInstan...