... My problem is that the program making the call is
expecting multiple return values. Obviously Java doesn't support returning multiple values from a function call, but is there away around this?
If sets of returned values are not too big, you can use container classes (java.util.Vector [implements XML-RPC Array] or java.util.Hashtable [implements XML-RPC Struct]) as one returned value with multiple items.
-- Cheers, Marek
