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 |
Define is null operator.
What is an xml file format?
Write the steps involved in the creation of a custom schema.
Can we use graphics in XML?
What is an xml feed?
How do I undeclare the default xml namespace?
Is there an app to read blogs?
Why is xml so popular?
What is a podcast feed url?
What is rss feed and how it works?
What happens if no xml namespace declaration is in scope?
Write a code for xml attribute and element.