XmlRpc を使用して Bugzilla サーバーにクエリを実行していますが、実行すると:
Map params = new HashMap<String, Object>();
params.put("ids", "250");
result = (Map) client.execute("Bug.get", new Object[] { params });
私が得る: Exception in thread "main" org.apache.xmlrpc.XmlRpcException: Can't use string ("250") as an ARRAY refs while "strict refs" in use at Bugzilla/WebService/Bug.pm line 76.
[250] と {250} も試しました。
このメソッドに引数を正しく送信する方法を教えてもらえますか?