> I'm writing a program that will act as a server for another program > making XML/RPC calls. 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 dilemma?
Why not return a vector of objects? Or create a Java object to wrap all the return values? -Tanya
