我可以在 Java 中使用 Python RPC 服务吗?
现在我有一个工作原型..我想获得服务器中所有可用服务的列表..
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);