I am writing an interface to a DB backend. This needs to work with C++ and C#. The java code will use third party libraries that have similar libraries in C++ and C#.
First off, how would I get the java code to be executed in C++ or C#? I know Java has JNI to be able to make C++ calls. Is there a way to do it in reverse?
How do I include the c# and C++ libraries from the third party java library?