in reply to iterating through XML attributes using MSXML4.0?

This is an (educated) guess, but as there are no other replies I thought it worth mentioning...

foreach my $Event (in $Events) { foreach my $Attr (in $Event->Attributes) { print $Attr->{Name}, ' = ', $Attr->{Value}; } }

Examine what is said, not who speaks.
"Efficiency is intelligent laziness." -David Dunham
"Think for yourself!" - Abigail
Hooray!

Replies are listed 'Best First'.
Re: Re: iterating through XML attributes using MSXML4.0?
by Anonymous Monk on Oct 26, 2003 at 19:23 UTC
    Thanks for your input. This provided enough for me to at least get past the exceptions thrown. What I also learned is that methods names are not case sensitive which I'm guessing is a feature for the VB crowd. I'm still banging on walking the DOM to find all values, attributes, etc., but I'm further along because of your educated guess.