Hi All, I'm using *XmlUtil*: <https://github.com/p...
# serialization
d
Hi All, I'm using XmlUtil: https://github.com/pdvrieze/xmlutil library to parse an XML. How can I parse a tag which can have multiple names. Specifically for example: For a tag named "link:Stat" some of my XML documents have fully qualified name: <linkStat&gt;&lt;/linkStat> some of my XML documents just have: <Stat></Stat> without the namespace I want them to be mapped to the same single variable: val stat: Stat. Anyone knows how I can achieve this. Thanks!