0

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?

Haresh Chaudhary
  • 4,390
  • 1
  • 34
  • 57
Dave
  • 133
  • 1
  • 2
  • 9

1 Answers1

0

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

Yuriy
  • 176
  • 1
  • 8