You can't insert '<' into an XML document just like that, because it has special meaning --- it's a sign for a parser that a tag starts. That's why there are character entities in XML. For a parser < is exactly the same thing as character < (of course this means that you can't use & in XML documents and you have to use & instead).
Bookmarks