Consume a python RPC service in JAVA

1.3k Views Asked by At

Can I be able to consume Python RPC service in Java?

Now I have a working prototype.. I wanted to get a list of all the available services in the server..

XmlRpcClient client = new XmlRpcClient();
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setServerURL(new URL("http://192.168.1.15:8010"));
client.setConfig(config);
Object[] params = new Object[0];

Object result = client.execute("hello",params);
0

There are 0 best solutions below