将关联数组(Hashmap)作为参数传递给xml rpc

时间:2011-02-11 16:54:36

标签: java xml xml-rpc

我想从Java中获取XML-RPC,我在将关联数组(Hashmap)作为参数传递时遇到问题。这是我的代码。

 XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
        config.setServerURL(new URL(ServeUrl));
        XmlRpcClient client = new XmlRpcClient();
        client.setConfig(config);
        Map map = new HashMap();
        map.put(Parameter Name, Parameter Value);
        map.put(Parameter Name , Parameter Value);
        Object result = client.execute("method name", map);

1 个答案:

答案 0 :(得分:5)

HashMap需要包装在一个对象数组中:

Object result = client.execute("method name", new Object [] {map});