XMLRPC Response Using ws-xmlrpc
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?
You have to cast the default java Object to HashMap and then access it.
精彩评论