I didn't want to setup and run a bunch of tests to prove it but in general which is going to be the better performing XPath within an XSLT solution? I'm processing documents that come in many different namespaces, but the local names are generally the same.
Code:
/*:Transaction/*:Claims/*:Claim
vs.
Code:
/*[local-name()='Transaction']/*[local-name()='Claims']/*[local-name()='Claim']
We're using Saxon 8.9X processing XSLT 2.0. Is there a better alternative for a 2.0 namespace agnostic XPath?