I am creating xml file with my own tags and given values and that in form of String and again I decode that in XML.
I have been said to
check that is code-decode XML is XML encoding safe.
Any idea how to check it? or any thing that make it sure that it is XML safe.
I am creating xml file with my own tags and given values and that
Share
If you would want to write
</mytag>as the content between<mytag>and</mytag>, you have to escape the less-than and greater-than characters, for example. There are several entities defined for escaping:What programming language/platform are you using? If you aren’t writing the XML all by yourself, there should be ways that you don’t have to worry about this!