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
How do I override a default xml namespace declaration?
How do I insert an xml file into word?
What is dtd and its types?
Does chrome have an rss reader?
What is wsdl used for?
How do you convert xsd to xslt?
What is the use of xslt
How do I convert html to xml?
What is a valid xml?
How can I compare two excel sheets?
Is api a web service?
What xpointer schemes are supported in this release?
How can I validate an xml document that uses xml namespaces?
Why namespaces are important?
What is xsl describe its two parts?