On 5/7/07, w-w <[EMAIL PROTECTED]> wrote:

The following call returns multiple strings:

          Object result = XmlRpcClient.Execute(GetVideoList, params);

When I "inspect" on "Result", it shows 37 items and all 37 strings. How do I
retrieve these strings into a list?  Thanks,

Try

   Object[] result = (Object[]) XmlRpcClient.execute("GetVideoList", params);
   for (int i = 0;  i < result.length;  i++) {
       String s = (String) result[i];
       System.out.println(s);
   }

--
My cats know that I am a loser who goes out for hunting every day
without ever returning as much as a single mouse. Fortunately, I've
got a wife who's a real champ: She leaves the house and returns within
half an hour, carrying whole bags full of meal.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to