XML is the base of Web 2.0 development. While writing a web service to integrate products, I learned some best practices with XML naming conventions. An XML element is everything from (including) the element's start tag to (including) the element's end tag. An element can contain other elements, simple text or a mixture of both. Elements can also have attributes. <bookstore> <book category="CHILDREN"> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <author>Erik T. Ray</author>> <year>2003</year> <price>39.95</price> </book> </bookstore>> In the example above, and have element contents, because they contain other elements. has text content because it contains text. In the example above only has an attribute (category="CHILDREN"). XML Naming Rules XML elements mus...
Fun Drive with Technology