From: D-Man <ds...@ri...> - 2001-06-06 03:01:15
|
On Wed, Jun 06, 2001 at 12:22:02PM +0930, Craig Turner wrote: | I'd like to make a network connection between a jython applet and a jython | server. What's the best way to pass serialised data in jython? Are there | classes standard in python that I can use? I don't know. | Alternatively, could I use RMI? Does jython escape any of the java | security sandboxes? At the moment, a client has to have certain | permission 'policies' set up before it can connect to a RMI server (that's | my impression anyway, and nobody responded to my query to the RMI user | list). Jython is really just a Java program and runs in a JVM, so it faces the same restrictions/requirements that other Java programs face. You might want to try XML-RPC or maybe JMS instead. (See www.xmlrpc.com) -D |