Hello,
I am new to Bonita Community Edition on version 2022.1
In the context of a process, I would like to be able to iterate sequentially (multi - instantiation) on a task from the data returned by a connector.
I have implemented a connector that returns a list of plein java beans (class ch.eri.orp.thirdparty.entity.AddressCondition) which is stored within a process variable named addressCondition.
When I launch my process I can see in the bonita logs that the connector has been launched and that it returns the list of bean of type AddressCondition, but unfortunately the multiInstanceIterator object (proposed by the Bonita editor) on which I should be able to iterate does not seem to be referenced.
I have the following stack trace:
2022-06-03T09:54:55,126+0200 | ZRH30479n | INFO | [ConnectorExecutor-7|254] c.b.c.AddressConditionConnector1 - addressConditions:[ch.eri.orp.thirdparty.entity.AddressCondition@49b2b7e6, ch.eri.orp.thirdparty.entity.AddressCondition@da51ec7] 2022-06-03T09:54:55,126+0200 | ZRH30479n | INFO | [ConnectorExecutor-7|254] c.b.c.AddressConditionConnector1 - Disconnect 2022-06-03T09:54:55,165+0200 | ZRH30479n | INFO | [ConnectorExecutor-8|259] c.b.c.AddressConditionConnector1 - Connect to retrieve addressConditions 2022-06-03T09:54:55,166+0200 | ZRH30479n | INFO | [ConnectorExecutor-8|259] c.b.c.AddressConditionConnector1 - addressConditions:[ch.eri.orp.thirdparty.entity.AddressCondition@36c4f5a2, ch.eri.orp.thirdparty.entity.AddressCondition@38031d0a] 2022-06-03T09:54:55,187+0200 | ZRH30479n | INFO | [ConnectorExecutor-8|259] c.b.c.AddressConditionConnector1 - Disconnect 2022-06-03T09:54:55,304+0200 | ZRH30479n | WARN | [Bonita-Worker-1-09|263] o.b.e.w.RetryingWorkExecutorService - THREAD_ID=263 | HOSTNAME=ZRH30479n | TENANT_ID=1 | Work ExecuteFlowNodeWork: flowNodeInstanceId: 160016 (32, false, false, false) failed. The element will be marked as failed. Exception is: org.bonitasoft.engine.core.process.instance.api.exceptions.business.data.SRefBusinessDataInstanceNotFoundException: Unable to find a reference to a business data named 'multiInstanceIterator' of process instance 8004 wrapped by org.bonitasoft.engine.expression.exception.SExpressionEvaluationException: org.bonitasoft.engine.core.process.instance.api.exceptions.business.data.SRefBusinessDataInstanceNotFoundException: Unable to find a reference to a business data named 'multiInstanceIterator' of process instance 8004 wrapped by org.bonitasoft.engine.core.process.instance.api.exceptions.SActivityStateExecutionException: org.bonitasoft.engine.expression.exception.SExpressionEvaluationException: org.bonitasoft.engine.core.process.instance.api.exceptions.business.data.SRefBusinessDataInstanceNotFoundException: Unable to find a reference to a business data named 'multiInstanceIterator' of process instance 8004 exception was generated here: at org.bonitasoft.engine.core.process.instance.impl.RefBusinessDataServiceImpl.getSARefBusinessDataInstance(RefBusinessDataServiceImpl.java:205) at org.bonitasoft.engine.business.data.RefBusinessDataRetriever.getRefBusinessDataInProcess(RefBusinessDataRetriever.java:78) at org.bonitasoft.engine.business.data.RefBusinessDataRetriever.getRefBusinessDataUsingFlowNodeContext(RefBusinessDataRetriever.java:68)
Thx for you help
david