What is XML? How can you use XML?There are most factors
What is XML? How can you use XML?
What is XML?
XML is a text based markup language that is fast becoming the standard for data interchange on the web.
How can you use XML?
There are several basic ways to make use of XML?
1✍️ Traditional data processing where XML encodes the data for a program to process.
2✍️ Document driven programming where XML document are containers that build interface and application from existing components.
3✍️Archiving the foundation for documents driven programming where the customized version of a component is saved (archived) so it can be used later.
4✍️ Binding where the DTD or schema that defines an XML data structure is used to automatically generated a significant protion of the application that will eventually process that data.
Comments in XML files
XML comments look just like HTML comments:-
Listing 7.4 XML comments
<message to="you@youraddress.com" from="me@myAddress.com"
subject="XML Is Really Cool">
<!--- This is a comment--->
<text>
How many ways is XML cool?Let me count the ways....
</text>
</message>
Comments
Post a Comment