in reply to XML parsing problem.

This is not a XML::Simple problem, since XML::Simple did the job right, it has created the HASH tree of the XML for you.

Your error is in the access of the HASH tree! Hehehe, and this remeber me why I have created XML::Smart, where the both access to the tree are right:

$parsed_xml->{descriptor}->[0]->{inputQueue}; # or $parsed_xml->{descriptor}{inputQueue};

Graciliano M. P.
"Creativity is the expression of the liberty".

Replies are listed 'Best First'.
Re: Re: XML parsing problem.
by jgooch (Initiate) on Jan 14, 2004 at 08:55 UTC
    Thanks, guys. I knew it was a piece of blatant stupidity on my part.