From: Jeff E. <je...@ad...> - 2001-08-10 14:43:10
|
Paolo Tortora wrote: > > Hi. > > In our project we have to invoke jython scripts from a C++ process. > This jython scripts are for unti test and then the C++ process has to verify the > result of the jython scripts. > So, the problem seems to be how making communication between C++ process and jvm > process (jython). Use the JNI invocation API to start a JVM within your C++ process. See http://java.sun.com/docs/books/tutorial/native1.1/invoking/index.html Then you can direct the JVM to run the Jython interpreter. -- Jeff Emanuel Landmark Graphics Corporation je...@ad... |