XML Interviews Question page5,xml Interviews Guide,xml Interviews

This page discusses - XML Interviews Question page5,xml Interviews Guide,xml Interviews

XML Interviews Question page5,xml Interviews Guide,xml Interviews

XML Interviews Question page5

     

  1. Do I have to know HTML or SGML before I learn XML?
    No, although it's useful because a lot of XML terminology and practice derives from two decades' experience of SGML.
    Be aware that ‘knowing HTML’ is not the same as ‘understanding SGML’. Although HTML was written as an SGML application, browsers ignore most of it (which is why so many useful things don't work), so just because something is done a certain way in HTML browsers does not mean it's correct, least of all in XML.
       
  2. What does an XML document actually look like (inside)?
    The basic structure of XML is similar to other applications of SGML, including HTML. The basic components can be seen in the following examples. An XML document starts with a Prolog:
    1. The XML Declaration  which specifies that this is an XML document;
    2. Optionally a Document Type Declaration
    which identifies the type of document and says where the Document Type Description (DTD) is stored;
    The Prolog is followed by the document instance:
    1. A root element, which is the outermost (top level) element (start-tag plus end-tag) which encloses everything else: in the examples below the root elements are conversation and titlepage;
    2. A structured mix of descriptive or prescriptive elements enclosing the character data content (text), and optionally any attributes (‘name=value’ pairs) inside some start-tags.
    XML documents can be very simple, with straightforward nested markup of your own design:
    <?xml version="1.0" standalone="yes"?>
    <conversation><br>
    <greeting>Hello, world!</greeting>
    <response>Stop the planet, I want to get
    off!</response>
    </conversation>
    Or they can be more complicated, with a Schema or question C.11, Document Type Description (DTD) or internal subset (local DTD changes in [square brackets]), and an arbitrarily complex nested structure:
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE titlepage
    SYSTEM "http://www.google.bar/dtds/typo.dtd"
    [<!ENTITY % active.links "INCLUDE">]>
    <titlepage id="BG12273624">
    <white-space type="vertical" amount="36"/>
    <title font="Baskerville" alignment="centered"
    size="24/30">Hello, world!</title>
    <white-space type="vertical" amount="12"/>
    <!-- In some copies the following
    decoration is hand-colored, presumably
    by the author -->
    <image location="http://www.google.bar/fleuron.eps"
    type="URI" alignment="centered"/>
    <white-space type="vertical" amount="24"/>
    <author font="Baskerville" size="18/22"
    style="italic">Vitam capias</author>
    <white-space type="vertical" role="filler"/>
    </titlepage>
    Or they can be anywhere between: a lot will depend on how you want to define your document type (or whose you use) and what it will be used for. Database-generated or program-generated XML documents used in e-commerce is usually unformatted (not for human reading) and may use very long names or values, with multiple redundancy and sometimes no character data content at all, just values in attributes:

    <?xml version="1.0"?> <ORDER-UPDATE AUTHMD5="4baf7d7cff5faa3ce67acf66ccda8248"
    ORDER-UPDATE-ISSUE="193E22C2-EAF3-11D9-9736-CAFC705A30B3"
    ORDER-UPDATE-DATE="2005-07-01T15:34:22.46" ORDER-UPDATE-DESTINATION="6B197E02-EAF3-11D9-85D5-997710D9978F"
    ORDER-UPDATE-ORDERNO="8316ADEA-EAF3-11D9-9955-D289ECBC99F3">
    <ORDER-UPDATE-DELTA-MODIFICATION-DETAIL ORDER-UPDATE-ID="BAC352437484">
    <ORDER-UPDATE-DELTA-MODIFICATION-VALUE ORDER-UPDATE-ITEM="56"
    ORDER-UPDATE-QUANTITY="2000"/>
    </ORDER-UPDATE-DELTA-MODIFICATION-DETAIL>
    </ORDER-UPDATE>

Tutorials

  1. XML Interviews Question
  2. XML Interviews Question page3
  3. XML Interviews Question page9
  4. XML Interviews Question page10
  5. XML Interviews Question page12
  6. XML Interviews Question page19
  7. XML Interviews Question page21
  8. XML Interviews Question page1,xml Interviews Guide,xml Interviews
  9. XML Interviews Question page11,xml Interviews Guide,xml Interviews
  10. XML Interviews Question page13,xml Interviews Guide,xml Interviews
  11. XML Interviews Question page14,xml Interviews Guide,xml Interviews
  12. XML Interviews Question page15,xml Interviews Guide,xml Interviews
  13. XML Interviews Question page16,xml Interviews Guide,xml Interviews
  14. XML Interviews Question page17,xml Interviews Guide,xml Interviews
  15. XML Interviews Question page18,xml Interviews Guide,xml Interviews
  16. XML Interviews Question page1,xml Interviews Guide,xml Interviews
  17. XML Interviews Question page21,xml Interviews Guide,xml Interviews
  18. XML Interviews Question page22,xml Interviews Guide,xml Interviews
  19. XML Interviews Question page23,xml Interviews Guide,xml Interviews
  20. XML Interviews Question page24,xml Interviews Guide,xml Interviews
  21. XML Interviews Question page25,xml Interviews Guide,xml Interviews
  22. XML Interviews Question page26,xml Interviews Guide,xml Interviews
  23. XML Interviews Question page27,xml Interviews Guide,xml Interviews
  24. XML Interviews Question page28,xml Interviews Guide,xml Interviews
  25. XML Interviews Question page29,xml Interviews Guide,xml Interviews
  26. XML Interviews Question page30,xml Interviews Guide,xml Interviews
  27. XML Interviews Question page1,xml Interviews Guide,xml Interviews
  28. XML Interviews Question page5,xml Interviews Guide,xml Interviews
  29. XML Interviews Question page6,xml Interviews Guide,xml Interviews
  30. XML Interviews Question page7,xml Interviews Guide,xml Interviews
  31. XML Interviews Question page8,xml Interviews Guide,xml Interviews