XML Syntax: Documents - PowerPoint PPT Presentation

About This Presentation
Title:

XML Syntax: Documents

Description:

XML Syntax: Documents Andy Clark Basic Document Structure Element tags Elements have associated attributes Text content Miscellaneous Encoding, document type ... – PowerPoint PPT presentation

Number of Views:31
Avg rating:3.0/5.0
Slides: 13
Provided by: AndyC79
Learn more at: http://people.apache.org
Category:

less

Transcript and Presenter's Notes

Title: XML Syntax: Documents


1
XML Syntax Documents
  • Andy Clark

2
Basic Document Structure
  • Element tags
  • Elements have associated attributes
  • Text content
  • Miscellaneous
  • Encoding, document type declarations
  • Entity references
  • Comments, processing instructions, etc

3
Example XML Document (1 of 6)
  • XML declaration

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03 lt?xml
-stylesheet typetext/xsl hrefstyle.xsl?gt 04
ltordergt 05 ltitem codeBK123gt 06
ltnamegtCare and Feeding of Wombatslt/namegt 07
ltprice currencyUSDgt42.00lt/pricegt 08
lt/itemgt 09 lt/ordergt
4
Example XML Document (2 of 6)
  • Document type declaration

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03
lt?xml-stylesheet typetext/xsl
hrefstyle.xsl?gt 04 ltordergt 05 ltitem
codeBK123gt 06 ltnamegtCare and Feeding of
Wombatslt/namegt 07 ltprice currencyUSDgt42.0
0lt/pricegt 08 lt/itemgt 09 lt/ordergt
5
Example XML Document (3 of 6)
  • Processing instructions

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03
lt?xml-stylesheet typetext/xsl
hrefstyle.xsl?gt 04 ltordergt 05 ltitem
codeBK123gt 06 ltnamegtCare and Feeding of
Wombatslt/namegt 07 ltprice currencyUSDgt42.0
0lt/pricegt 08 lt/itemgt 09 lt/ordergt
6
Example XML Document (4 of 6)
  • Element tags

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03
lt?xml-stylesheet typetext/xsl
hrefstyle.xsl?gt 04 ltordergt 05 ltitem
codeBK123gt 06 ltnamegtCare and Feeding of
Wombatslt/namegt 07 ltprice currencyUSDgt42.0
0lt/pricegt 08 lt/itemgt 09 lt/ordergt
7
Example XML Document (5 of 6)
  • Attributes of element tags

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03
lt?xml-stylesheet typetext/xsl
hrefstyle.xsl?gt 04 ltordergt 05 ltitem
codeBK123gt 06 ltnamegtCare and Feeding of
Wombatslt/namegt 07 ltprice currencyUSDgt42.0
0lt/pricegt 08 lt/itemgt 09 lt/ordergt
8
Example XML Document (6 of 6)
  • Text content

01 lt?xml version1.0 encodingShift_JIS?gt 02
lt!DOCTYPE order SYSTEM grammar.dtdgt 03
lt?xml-stylesheet typetext/xsl
hrefstyle.xsl?gt 04 ltordergt 05 ltitem
codeBK123gt 06 ltnamegtCare and Feeding of
Wombatslt/namegt 07 ltprice currencyUSDgt42.0
0lt/pricegt 08 lt/itemgt 09 lt/ordergt
9
Differences with HTML
  • Elements must be balanced, properly nested
  • e.g. ltbr /gt OK
  • e.g. ltbgtbold ltigt and italic lt/igt textlt/bgt OK
  • e.g. ltbgtbold ltigt and italic lt/bgt textlt/igt BAD!
  • e.g. ltulgt ltligt list item lt/ulgt BAD!
  • Attributes must be specified, quoted
  • e.g. ltimg srcimages/banner.gif/gt OK
  • e.g. ltimg srcimages/banner.gif /gt BAD!
  • e.g. ltul compactgt ltligt list item lt/ligt lt/ulgt BAD!

10
Other Important Points
  • Documents must be well-formed
  • Document contains single root element
  • Elements are balanced and properly nested
  • Attributes are specified and quoted
  • Text content contains legal XML characters
  • Documents may be valid
  • Document structure and content follows rules
    specified by grammar (e.g. DTD, XML Schema)

11
Useful Links
  • XML 1.0 Specification
  • http//www.w3.org/TR/REC-xml
  • Annotated XML 1.0 Specification
  • http//www.xml.com/axml/testaxml.htm
  • Informational web sites
  • http//www.xml.com/
  • http//www.xmlhack.com/

12
XML Syntax Documents
  • Andy Clark
Write a Comment
User Comments (0)
About PowerShow.com