what are the most common errors, while writing xml documents ?
Answer / 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 |
What is text () in xpath?
What is xml signature/encryption?
What are various advantages of utilizing xslt?
Define element and attribute in an xml document.
What is valid xml document? What a well formed xml document?
Differences Between XML and HTML
Can you convert xml to csv?
What is xml sql?
What are the parts of an xml file?
Are xml tags case sensitive?
How often does rss feed update?
Why should we go for xml editor instead of notepad?