Hey
Im currently working on a application server written in Java but to use information from a C++ program.
The company seems to agree that rewriting thousands of lines of code would be time consuming and simply making libraries of key functions of the C++ program and then passing them to the Java servlet would be much easier on resources and time (there are only 2 Java programmers)
Searching for information, Ive read about Java Native Interface (or JNI) which allows more or less what we are looking for.
Is this possible and is JNI heading in the right direction?
Thank you