Hello,
I would like to store XMLs in elastic, so when I give "store_xml => true", I get a parsing exception because my whole XML is wrapped by a tag "<C:Message>" and the prefix "C" is not having any definition unfortunately (I know it is wrong implementation but the centralized logging framework is adding this parent tag, so would not be able to change). Now to overcome this, is there any solution such as add namespace or remove a particular prefix as such? I do not want to remove all the prefixes present in the document.
Sample XML:
<C:Message>
<Date>03-05-2020</Date>
<Time>11:00:34</Time>
<SOAP-ENV:Body>
<Customer>2432532</Customer>
</SOAP-ENV:Body>
</C:Message>
Cheers,
Maadavan