Using Camel transformation, Json to XML, With
<dataFormats> <xmljson id="xmljson"/> <xmljson id="xmljsonWithOptions" forceTopLevelObject="true" trimSpaces="true" rootName="root" skipNamespaces="true" removeNamespacePrefixes="true" expandableProperties="d e"/> </dataFormats>
And applying the transformation with :
<unmarshal ref="xmljsonWithOptions"/>
I can indeed transform Json into XML, but there is no xml entities transformation,
Typically, if some text was containing "&" this caracter, it is not rewrittent into "&",
Any way to do this ?