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 xsl param?
What is difference between xsd and xml?
How can child elements be specified upon using a sequence compositor?
How do I open an rss feed?
What are the different xslt elements?
How do I undeclare the default xml namespace?
What is the use of xslt <xsl: for-each> element?
What is xslt used for?
What is a xml parser?
What importance does xslt hold in xml?
What is the purpose of xml namespaces?
Do the default values of xmlns attributes declared in the dtd apply to the dtd?