http://qs321.pair.com?node_id=607584


in reply to Re^3: XML::LibXML findnodes and namespaces
in thread XML::LibXML findnodes and namespaces

Thanks for your help roman. I resorted to a similar solution of replacing my prefixed elements like so...

$search_path =~ s#([^/:]*:[^/]*)#*[name() = "$1"]#g;

I've solved my default namespace issue by just doing a namespace lookup and creating an associated prefix. Not exactly the solution I was hoping for, but it works.