what are the most common errors, while writing xml documents ?
Answer Posted / praveen
---> Forgetting that XML Is Case Sensitive
ex: <name>abc</name> and <Name>abc</Name> <NAME>abc</NAME>
both 3 are different
---> Forgetting of End Tags
<name>abc
---> Forgetting the Quotes for the Attribute Value
<name preferred=true>abc</name> --- error
<name preferred-"true">abc</name> --- oh yeah
---> Typing Spaces in the Name of the Element
<my name>
......
</my name> --- :(
<myname>
......
</myname> --- :) :))
Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Is there any way that html can be replaced with xml?
What is xpath descendant?
What is the difference between xls and xlsx?
What is attribute in xml?
Is docx a zip file?
What does XSLT processing models involve?
Where can I declare an xml namespace?
Do I need rss feeds in outlook?
Can we use xml for database purpose in html?
Would you be able to use the xslt to convert html into vxml?
What is xslt explain with example?
What is meant by xsl formatting?
How do I convert xml to text?
What is DiffGram in XML?
What is the stylesheet structure used with xslt?