Hi,
How can I use IDM engine with MongoDB datasource along with Flowable Engine.
I enabled the IDM engine in the below code and getting the following error: A datasource is required for initializing the IDM engine
ProcessEngine processEngine = new MongoDbProcessEngineConfiguration()
.setServerAddresses(Arrays.asList(new ServerAddress(“localhost”, 27017)))
.setDisableIdmEngine(false)
.buildProcessEngine();
Please let me know how to set MongoDB datasource in order to use IDM Engine
Thanks in advance,
Venkat PS