I want to use docx4j in my C++ application to be able to read and write docx files.
I am trying to call a function WordprocessingMLPackage.createPackage().
First I instantiate JNI which is successful. Then get the class and method ID which are also successful. But when I try to call the function using CallStaticObjectMethod(), it fails. I tried using another Java library OpenXML4J and all functions calls executed properly. Am I missing something here? Is ...