LDAP module fail to build in Mendix 10

0
Hi I try to use the LDAP module under this link: https://marketplace.mendix.com/link/component/210270 https://docs.mendix.com/appstore/modules/ldap/   After i install all the required modules, I try to run the application locally on Mendix 10 Studio. But I’m getting following error, the same error not found in Mendix 9.24.2, please advise.   Projects\LdapTest10\javasource\ldap\ImportUserRecord.java:554: error: cannot find symbol this.context.rollbackTransAction(); ^ symbol: method rollbackTransAction() location: variable context of type IContext Note: Some input files use or override a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 1 error FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':compile'. > Compilation failed; see the compiler error output for details. * Try: > Run with --stacktrace option to get the stack trace. > Run with --debug option to get more log output. > Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 4s  
asked
1 answers
1

It says in the release notes of Mendix 10

 

We removed the deprecated rollbackTransAction() method from the public IContext interface. Use rollbackTransaction instead.

 

This means that the module needs to be updated, or you change the java code yourself so you can proceed and notify Mendix about this issue.

answered