I'm trying to pass python tuple over java xmlrpc. Here is library what I'm using: XMLPRC Java Libray
I'm using odoo framework on server and api. I want to pass argument which will looks like:
[(4,7),(4,8)]
I'm able to pass following structure:
[[4,7],[4,8]]
which is clearly array inside array like:
new Object[]{new Object[]{4,7},new Object[]{4,8}}
The problem is there is no tuple in java. What I absorb is how to transform this structure:
This [4,8] to This(4,8)
It is some kind of serialization issue what don't know how to resolve it and pass expected python structure.