Posts Tagged ‘XML’


Data Types with XML

Looking at this comprehensive list gives you an idea of the level of granularity in XML. There is a data specification for everything, even spaces! String Data Types Data Type Description xs:string A text string containing all legal characters from the ISO/IEC character set, including all white space characters xs:normalizedString A text string in which Read the full article...


Character and Entity References with XML

Here is a quick code reference for some common character and entity references. Symbol Character Reference Entity Reference Description © &#169;  &copy; Copyright symbol ® &#174;  &reg; Registered trademark symbol ™ &#153;  &trade; Ttrademark symbol  < &#60; &lt; Less than symbol > &#62; &gt; Greater than symbol & &#38; &amp; Ampersand " &#22; &quot; Double Read the full article...


XML Vocabularies

Vocabularies XML Vocabulary Description Channel Definition Format (CDF) Automatic delivery of information from Web publishers to PCs, PDAs, cell phones, and other information devices Chemical Markup Language (CML) Coding of molecular and chemical information Extensible Hypertext Markup Language (XHTML) HTML written as an XML application Mathematical Markup Language (MathML) Presentation and evaluation of mathematical equations Read the full article...


What is a URI?

Uniform Resource Identifier URL Uniform Resource Locator http://www.jacksonelect.com URN Uniform Resource Name urn:NID:NSS NID is the namespace identifier Example: urn:isbn:0-619-01969-7 NSS is a text string specific to that namespace NID indicates how to interpret the text string in the NSS


Introducing XML

XML Declaration <?xml version="version number" encoding="encoding type" standalone="yes|no" ?>   Term Description Default value Version number the version of the XML specification being used in the document 1.0 Encoding type identifies the character set used in the document UTF-8 Standalone attribute indicates whether the document contains any references to external files. If so, such references Read the full article...