Stored Procedure

0
Hi all I’m trying to run a stored proc from Mendix 8.2.2  still trying to get the connection working I get this error. NoClassDefFoundError occurred for class 'javax/xml/bind/DatatypeConverter'. Please make sure the userlib folder of  your project includes the correct library which contains this class.
asked
1 answers
1

According to the Mendix requirements, Mendix is using Java version 11. This version does not include the javax/xml/bind library. Easiest way to fix this is putting the javax/xml/bind/ library in the userlib folder yourself. You can download it here: 

 

https://mvnrepository.com/artifact/javax.xml.bind/jaxb-api

answered