Intro to XML - raisercostin/software-wiki GitHub Wiki
- Element - tags
<body>
<invoice>
- Attribute:
<... "attribute1"="value1" ...>
- Entity:
&
<
>
- Namespaces - https://www.ibm.com/developerworks/library/x-namcar/index.html
- SAX - (push sax) Stateless event driven
- Pull SAX - StAX (JSR-173 in JCP public review): Streaming API for XML
- XML Pull parsing
- DOM (language neutral) - Memory intensive parse tree
- XOM, JDOM, DOM4J - DOM-like APIs for Java
- JAXB , Castor, XMLBeans - XML to Java objects binding document object and schema class
- digester - rule-based XML processing
- Jelly, ant - Executable XML
- RelaxNGCC - syntax-directed approach
- http://xsd2xml.com/
- XML Schema (XSD) validation - http://www.utilities-online.info/xsdvalidation/#.WrOnmqhuaCo