hashim
July 20, 2020, 7:51am
1
Hi,
I have a service task followed by a Timer Intermediate catch event , when controller comes on service task I got an error message Unknown property used in expression: ${doSomethingDelegate}. Cause: Cannot resolve identifier 'doSomethingDelegate'
in camunda.ACT_RU_INCIDENT
table.
Can I use service task just after Timer Intermediate catch event ?
And I noticed that If I am using user task after timer event, it is working fine.
Best regards
2 Likes
@hashim can you upload your bpmn model file and java delegate ?
hashim
July 21, 2020, 7:50am
3
Hi @aravindhrs ,
bpmn file : Schedule.bpmn (4.2 KB)
Please find delegate class below:
@Component
public class DoSomethingDelegate implements JavaDelegate {
private final Logger logger = Logger.getLogger(DoSomethingDelegate.class);
@Override
public void execute(DelegateExecution execution) throws Exception {
// Log message to test
logger.error(“DoSomethingDelegate executed successfully”);
}
}
Thanks,
Hashim
I found an answer that it may be caused by env problems:
Even I am facing the same issue, we have a Intermediate timer catch event with no delegate handler its juts suppose to wait but I get same issue like mentioned by vernon.
and I can confirm that we have jobExecutorDeploymentAware set to true and also we are not doing any deployment using REST service.
do you deploy the BPMN process as part of the process application? - Yes
Do you use the Camunda Spring Boot starter? - Yes
Camunda version is 7.7