jangidipramod / android-xmlrpc

Automatically exported from code.google.com/p/android-xmlrpc
0 stars 0 forks source link

call(String method, Vector paramsv) #14

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

What version of the product are you using? On what operating system?

Please provide any additional information below.

This methode solve the probleme of parsing. So we can use hashmap.

public Object call(String method, Vector paramsv) throws XMLRPCException {
        System.out.println("<============================> ");
        Object[] params = new Object [paramsv.size()];
        for (int i=0;i<paramsv.size();i++)
        {
         System.out.println("<============================>:"+i);
         params[i]=paramsv.elementAt(i);
        }                                    
        return callEx(method, params);
    }

Original issue reported on code.google.com by jahbromo on 2 Oct 2009 at 1:40

GoogleCodeExporter commented 9 years ago
I'll look at rolling this into the next release.

Original comment by JonTheNiceGuy on 30 Mar 2010 at 8:19

GoogleCodeExporter commented 9 years ago

Original comment by JonTheNiceGuy on 30 Mar 2010 at 8:24

GoogleCodeExporter commented 9 years ago
Implemented under r17 (ages ago!)

Original comment by jon@sprig.gs on 19 Nov 2010 at 4:02