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
it seems something is sensitive to word "content" inside my JSON since whenever I tried to use this name inside my json and call XML to convert that into XML, it will treat my data in an odd way, for example:
am I doing something wrong?
I should mention that my code is working fine with all the other properties, just it seems something is sensitive to content name.
Thanks for your efforts,
Navid :)
The text was updated successfully, but these errors were encountered:
The XML transformations are understood to be problematic and imperfect. It is unfortunate that a common word like 'content' is used here, but no changes to this part of the XML code are anticipated, due to the likelihood that it would break existing applications. Maintaining backwards compatibility is one of the highest priorities for this project.
Hi Devs,
Appreciate your efforts so far.
it seems something is sensitive to word "content" inside my JSON since whenever I tried to use this name inside my json and call XML to convert that into XML, it will treat my data in an odd way, for example:
"parent": [
{
"content" : "mydata",
"anotherProperty" : 12
}, {
"content" : "mydata1",
"anotherProperty" : 13
}
]
it will generate something like this:
mydata12mydata113
I assume it should produce something like this:
mydata12
mydata113
am I doing something wrong?
I should mention that my code is working fine with all the other properties, just it seems something is sensitive to content name.
Thanks for your efforts,
Navid :)
The text was updated successfully, but these errors were encountered: