With reference to the post for mapping elements ignoring namespaces: How to ignore namespace when selecting XML nodes with XPath
Solutions:
//*[local-name()='name']
//*:name
Have the following question: What about mapping from an element that had empty namespace that got automatically inserted to a request ? Tried the above but it's not picking the empty-namespace elements ...
Thanks