Ronnie Maor wrote: > Does anyone have experience with RPC from Java to Python? > Trying to get this to work over either XML-RPC or SOAP (prefer SOAP) but > am having slow start due to lack of experience with any of relevant > parts :-( > Specific packages to use, tips, and especially working example code > would be very very appreciated > > thanks > Ronnie >
XML-RPC and JSON were mentioned, so I won't repeat them. Here's 2 other options (although more complex than the 2 above): 1. If server sidr is java, you can use Caucho's Hessian/Burlap: http://www.caucho.com/hessian/index.xtp The have a python client implementation: http://www.caucho.com/hessian/index.xtp#Python (It been a while since it's been updated, so YMMV). If you're using SpringFramework for the server, you already have an adapter for it. 2. A more complete (hence bit complex) solution, is ZeroC's ICE: http://www.zeroc.com/ice.html http://www.zeroc.com/icepy.html Note the license: it's GPL. If you're app is not GPL, a license fee is required. HTH -- Meir Kriheli http://mksoft.co.il