REST Activity Feature

Hey @naeem,

If you are using Spring Boot then you can’t use flowable.cfg.xml.

Not sure how you are overriding the FlowableEngineConfiguration. However, if you want to change the ProcessEngineConfiguration with Spring Boot then you would need to use an EngineConfigurationConfigurer. For example:

public EngineConfigurationConfigurer<SpringProcessEngineConfiguration> customProcessEngineConfigurer() {
    return configuration -> {
        configuration.getHttpClientConfig().setDisableCertVerify(true);
    }
}

Cheers,
Filip