in reply to Parsing SOAP::Lite results

I'm trying to parse a SOAP::Lite result data structure. Here's an example:

Usually "parsing" is building a data structure, and what you're actually trying to , we call walking or navigating or to-iterate-over a data structure

  • Comment on Re: Parsing SOAP::Lite results (walking/navigating/iterating over)

Replies are listed 'Best First'.
Re^2: Parsing SOAP::Lite results (walking/navigating/iterating over)
by Roboz (Novice) on Sep 28, 2012 at 11:19 UTC

    Thanks on the correction. I had 'iterate over' and changed it to 'parsing.' So, in this case SOAP::Lite parsed the XML result into a SOAP::SOM data structure that I am walking through, navigating, etc... Definately worth knowing the proper words to convey the proper ideas.