The thing you dumped to produce the structure you posted was an array. It has two elements, named "OperationRequest" and "Items". The "Items" element is an object, with properties named "Request", "Item", and "ItemAttributes". The "Request" property is also an object, with its own properties: "IsValid" and "ItemLookupRequest". The former is a string, with the value "True".
Assuming that what you dumped was $parsed_xml->Items->Item->ItemAttributes->ProductGroup (because that's what appears in the code you posted), then to get that "True" value the full expression would be
$parsed_xml->Items->Item->ItemAttributes->ProductGroup['Items']->Request->IsValid
jrough wrote:Any other ideas?
I never found much use for SimpleXML, myself; the standard [man]DOM[/man] interface is quite adequate (and doesn't feel as kludgy).
Either way, there is also the option of using XPath to traverse the XML structure - certainly DOM gives that option and I believe SimpleXML does as well.