Hi!
In my business processes I can start and end tasks. After restarting my browser I see the right state of my process, e.g. a task was already started. Now I want to end the task but because I restarted my browser I get the error
Task null not found
Mike
For those who are interested, I have a solution.
Just add a new Annotation @BeginTask
to the method that ends your task.
Thats it.
As I understand @BeginTask
just resumes work on an incomplete jBPM task and finally the task will be ended.
Her is an example:
@EndTask @BeginTask public String endTask(){}