Just trying to understand what this XPath is doing
"//*[local-name()='Fault']/*[local-name()='detail']/*[local-name()='serviceFault']/*[local-name()='messages']/*[local-name()='message']/*[local-name()='code']"
What I believe it's doing is scanning the whole XML file to find Fault, detail, serviceFault, messages, message, code?
And if so is this an and function or an or function? And what I mean is, is looking for fault or detail, or ..., or is it doing looking fault and detail and serviceFault and ...?