cancel
Showing results for 
Search instead for 
Did you mean: 

Java Service Task Entry/Exit Action Handler

nikunj_patel
Champ in-the-making
Champ in-the-making
Hi All,

We are exploring Activiti BPM for our requirement to execute tasks in workflow fashion.

For the same, I have a technical requirement. I want to execute some Java service on each task and for that I am using Activiti's Java service node which satisfies my requirement.

But, I also want to do some processing when workflow enters java service task node and exists the same node.

I read for the execution listeners but was not able to find any listener for this kind of stuff.

Is there anyway to do it?

Thanks for any help.

Nikunj


2 REPLIES 2

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi,

execution listeners
Have a look on org.activiti.examples.bpmn.executionlistener.ExecutionListenerTest in activiti source. (good example of listeners)

May by org.activiti.standalone.parsing.BPMNParseHandlerTest / http://www.activiti.org/userguide/#advanced_parseHandlers would be interesting for you too.

Regards
Martin

Thank you martin,

I will check that out.