I have a Python XML-RPC server that has a function that returns a tuple, e.g:
def function_name(first_parameter, second_parameter)
#do something
return (x,y)
I'm calling this function from Java in an Android application using aXMLRPC, the code is:
Object id = client.call("function_name", first_parameter, second_parameter);
How can I extract the two return values of the function from the Object id?