/ns:foo/ns:bar/@baz
becomes
/*[local-name() = 'foo']/*[local-name() = 'bar']/@baz
You get the point. Don't expect that to be lightning-fast either.
http://stackoverflow.com/questions/2607432/how-can-i-get-jdom-xpath-to-ignore-namespaces
/ns:foo/ns:bar/@baz
becomes
/*[local-name() = 'foo']/*[local-name() = 'bar']/@baz
You get the point. Don't expect that to be lightning-fast either.