|
From: Diez B. R. <de...@we...> - 2005-09-02 09:33:04
|
FAN wrote: > I know jython script can be compiled to java class and called directly > from Java code. But it seem not be able to be called from other jython > script. Why not? If it's compiled JAVA-Code and you can call it from JAVA, you can call it from jython. > My purpose is to provide a business module written in Jython to custom > without releasing the Jython source, and custom can write their own > script by call this module. > Is the a way to get this? I personally don't think so - JAVA is so easy to decompile, that won't protect your code very much. The only really safe way is to offer a RPC-Service. Such things are dealt with in licenses - not on the code-level. Regards, Diez |