From: Paolo T. <Pao...@ma...> - 2001-08-10 08:24:41
|
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). The only way to be done seems to test the result of the jvm process as unix process; in other words, the script jython should terminate with the exit system call equals to zero or one (exit(1) or exit (0) ) and the C++ process tests it. Anyone knows any other possible solutions ? Is it possible to invoke in some way a jython script from a python script and testing back the result ? I think there is no other solution than the first one depicted above, otherwise .. any helps is appreciate. Thank you in advance. Paolo. |