views:

111

answers:

2

Anyone have experience parsing complex response types using ws-xmlrpc?

The service returns a HashMap with one of the values an Array, when I request the key of the array from the hashmap, java just returns "java.lang.Object".

How do I access the contents of the array?

Any ideas?

Thanks in advance for your input.

A: 

You have to cast the default java Object to HashMap and then access it.

Yuriy
A: 

Have a look at this FAQ : http://ws.apache.org/xmlrpc/faq.html

The first entry might help you.

Jerome Duquennoy