in reply to XML::LibXML::XPathContext and Child Nodes

The childnodes still live in the x: namespace. You have to find them in the same way you find the wrapper, but specify the context node to be $key:
my $childnodeA = $xpath->findnodes('x:childnodeA', $key);
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: XML::LibXML::XPathContext and Child Nodes
by omegaweaponZ (Beadle) on Aug 27, 2014 at 13:20 UTC
    Update: Thanks, nevermind, I found the error in my code. Was referencing something prior that conflicted.
    Thanks again!