You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a XSD-schema file, if xsd elements names include _ . - etc. they will be mapped to javaStyledPropertyNames:
"person.name" would be mapped to: "personName"
Conclusively if you want to convert json data into xml using that mapping, you have to make sure, that the json fields have javaStyledNames otherwise they are ignored.
This
{"person":
{"person.name": "honolulu"}
}
will end up in empty element:
<person></person>
The text was updated successfully, but these errors were encountered:
In a XSD-schema file, if xsd elements names include _ . - etc. they will be mapped to javaStyledPropertyNames:
"person.name" would be mapped to: "personName"
Conclusively if you want to convert json data into xml using that mapping, you have to make sure, that the json fields have javaStyledNames otherwise they are ignored.
This
will end up in empty element:
The text was updated successfully, but these errors were encountered: