Hi,
I use ruby to get a report by calling a soap based web service method. By calling such a method (soap_driver.method_foo(params)) I am getting a ruby object of this type SOAP::Mapping::Object.
I inspect the object and get a bunch of QNames, which I try using it to get the info out of the object.
Considering the soapResponse is the object returned by the web method I have tried things like soapResponse["//some_elem"] .. stuff like that. But I get nils (except for the root).
What should I do to parse the object?
thanks