Pythonでorg.apache.xmlrpc.client.XmlRpcClientを使用する方法を試しています。
https://github.com/mcasperson/vaultdemo/blob/master/src/main/java/com/redhat/ecs/App.javaのコードを使用しています:
final XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setServerURL(new URL(args[0]));
config.setBasicUserName(args[1]);
config.setBasicPassword(args[2]);
final XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
final Object[] params = new Object[] {"1376"};
final String retValue = (String) client.execute("ContentAPI.queryResult", params);
次のPythonコードを試していましたが、どこにも行きません:
from xmlrpclib import ServerProxy
s = ServerProxy(url)
print s.client.execute("ContentAPI.queryResult",1376)
ユーザー名とパスワードを python の ServerProxy クライアントに渡すにはどうすればよいですか?
あなたの助けは大歓迎です