advantages of xml installed base of html, http and webbrowsers xml is simple and portable xml can...

16
Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than just a markup language („XML famil XML is international

Upload: merryl-jefferson

Post on 11-Jan-2016

213 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Advantages of XML

• Installed base of HTML, HTTP and webbrowsers

• XML is simple and portable

• XML can describe documents of any complexity

• XML is more than just a markup language („XML family“)

• XML is international

Page 2: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

What will XML be used for?

• Messaging („database interchange“): XML as standardized format for data exchange (e.g.: XML/EDI)

• Processing („Distributed processing: giving Java something to do“): Reallocation from server to client (e.g.: Electronic Banking, Electronic Commerce)

• Publishing („View selection: letting the user decide“): Variable presentation of information

•Publishing in different formats with XSL (FAQ problem)•Automated publishing (e.g. from databases)

• Retrieval („Web agents: data that knows about me“): Intelligent search for information

Page 3: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applications: XML/EDI

• XML as messaging format between heterogeneous systems

• Documents use an industry standard DTD

• This DTD is publicly made available in a repository

• Thus, documents can be validated and processed by any receiving application

• Different approach: Well-formed XML-douments/Schemas

Page 4: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applications: XML/EDI

traditional EDI relationship: Only profitable in long term, high volume transactions

XML/EDI: Propensity to invest in compatible and open IT-infrastructures especially for SMEs at any stage of a supply chain is higher („white elephants“)

Datastream provided by an XML parser is easy to process by different applications.

XML-coded data is easily adjustable to the heterogeneous needs of different applications and media.

XML enables the definition of open and flexible interfaces.

Advantages associated with XML (simple, flexible, works with existing products and legacy systems) are the foundation of the XML/EDI-Group‘s E-Business-Framework.

Page 5: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applications: Processing

Because all document data can be coded in XML all information required for processing the document can be transmitted (possibly with a Java program) and processed on the client-side („server independent documents“).

Shift of processing time from server to client

reduced network load

Combination of Java and XML!!!

Page 6: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applications: Publishing

Different „views“ on XML-documents depending on purpose („Publish once“):

• Software documentation: Only the relevant operating system • Different display/printing format• Tables of Content generated at run-time• Different use of footnotes etc. in documents• Sorting (phone books...) by name, number, e-mail...• Personalized product catalogs from distributed data sources• ...

Page 7: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applications: Retrieval

„Information needs to know about itself, and information needs to know about me” (Jon Bosak)

• Intelligent software agents can understand the meaning of XML-coded information better description of websites and products

• Problem of too many hits in search engines (homonyms and synonyms)

• Personalized TV Guide

• .....

• In general, structured (meta-)data is the basis for an individual usage of mass media/mass data on networks.

Page 8: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

Applicatons

• OFX/OFE (Open Financial Exchange), (Quicken, MS Money, banks) • CML (Chemical Markup Language), Exchange and description of molecules etc. • BSML (Bioinformatic Sequence Markup Language)„public domain protocol for Graphic

Genomic Displays“

• OMF (Weather Observation Markup Format) (OMF)• MML (Mathematical Markup Language) • OSD (Open Software Description Format) for describing software modules and their

relations among heterogeneous clients • CDF (Channel Definition Format) used for push channels in MSIE• OTP, Framework for E-Commerce• SpeechML (IBM) „for building distributed network-based conversational applications“• ThML (Theological Markup Language)• .............

Already, hundreds of languages have been described in XML and every day there are dozens of new XML-aplications:

http://www.oasis-open.org/cover/xml.html

Page 9: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

The formal definition of a document type can be described in a DTD. But there are serious drawbacks. That is why the W3C is developing schemas for constraining document structure in a more sophisticated way.

Specific goals of schemas beyond DTD functionality are among others:

definition of incomplete constraints on the content of an element type

primitive data typing (integers, dates, ...; byte sequences ("binary data") also need to be considered)

inheritance

XML Schema Working Group at W3C

Page 10: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

XML-Data

• XML-Data is one of four schema submissions to W3C

• XML-Schema implementation in IE 5 is a subset of XML-Data

• Definition of a schema in top-level SCHEMA document element derived from namespace: xmlns="urn:schemas-microsoft-com:xml-data

• It is useful to make the schema-namespace the default namespace

• The schema-element should contain all other namespace declarations, e.g. the namespace defining data types

<Schema name="myschema"

xmlns="urn:schemas-microsoft-com:xml-data"xmlns:dt="urn:schemas-microsoft-com:datatypes">

<!-- ... --></Schema>

Page 11: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

XML Schemas

<!DOCTYPE ARTICLE [<!ELEMENT ARTICLE (AUTHOR, TITLE+)><!ELEMENT AUTHOR (#PCDATA)><!ELEMENT TITLE (#PCDATA)>]>

HTML XML

<P> <strong>Bosak, Jon

</strong> XML, Java, and

the future of the Web </P>

<?xml version="1.0"?>

<ARTICLE>

<AUTHOR>Bosak, Jon</AUTHOR>

<TITLE>XML, Java, and the future of the Web </TITLE>

</ARTICLE>

Page 12: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

XML Schemas

<?xml version="1.0"?>

<Schema name="schema_sample_1"

xmlns="urn:schemas-microsoft-com:xml-data"

xmlns:dt="urn:schemas-microsoft-com:datatypes">

<ElementType name=“TITLE" content="textOnly" model="closed"/>

<ElementType name=“AUTHOR" content="textOnly" model="closed"/>

<ElementType name=“ARTICLE" content="eltOnly" model="closed">

<element type=“TITLE" minOccurs="1" maxOccurs="*"/>

<element type=“AUTHOR" minOccurs="1" maxOccurs="1"/>

</ElementType>

</Schema>

Page 13: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

XML Schemas - content model

<Schema xmlns="schemas-microsoft-com:xml-data">

<ElementType name=“article" model="closed"/>

<element type=“title" />

<element type=“author" />

</ElementType>

</Schema>

A schema content model is open by default. This means that apart from explicitly declared elements additional elements can be used extensibility

The content model can be closed by using the model attribute.

Page 14: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

XML Schemas - data types

Schemas allow the definition of data types ( type validation)

<ElementType name="pages"> <datatype dt:type="int" /> </ElementType>

While validating the data types are checked. Since schemas use an open content model, applications can check for additional information:

<ElementType name="pages" xmlns:myExt="urn:myschema-extensions"> <datatype dt:type="int" /> <myExt:min>50</myExt:min> <myExt:max>100</myExt:max> </ElementType>

Page 15: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

• Principal XML Schema elements include ElementType (which declares element types) and AttributeType (which declares attribute types).

• These elements must have an explicit name attribute unique within the schema.

• The element and attribute elements can appear within the ElementType element to constrain the content and attributes that can appear in elements of the named type.

• The ElementType attributes order and group allow you to further establish fine-grained definitions.

• The minOccurs and maxOccurs attributes allow you to define the number of occurrences of an element or group.

• The content for an element of a given element type can be defined as one of four categories: empty (no content), text only, subelements only, or a mix of text and subelements.

• This choice is expressed in the ElementType attribute named content, which can take the values "empty," "textOnly," "eltOnly," and "mixed," respectively.

XML-Data

Page 16: Advantages of XML Installed base of HTML, HTTP and webbrowsers XML is simple and portable XML can describe documents of any complexity XML is more than

• Publishing and syndication: Structural schemas describe the properties of headlines, news stories, thumbnail images, cross-references, etc. Document views under control of different versions of a schema.

• Electronic commerce transaction processing: Libraries of schemas define business transactions within markets and between parties.

• Supervisory control and data acquisition: Provide transparency control. Applications include media devices, security systems, plant automation, process control.

• Traditional document authoring/editing governed by schema constraints: Guide an author in the development of documents (e.g. a memo, a more sophisticated example is the technical service manuals for a wide-body intercontinental aircraft). The application can ensure that the author always knows whether to enter a date or a part-number, and might even ensure that the data entered is valid.

• Use schema to help query formulation and optimization: A query interface inspect XML schemas to guide a user in the formulation of queries. Any given database can emit a schema of itself to inform other systems what counts as legitimate and useful queries.

• Open and uniform transfer of data between applications, including database: XML has become a widely used format for encoding data for exchange between loosely coupled applications. Such exchange is currently hampered by difficulties of fully describing the exchange data model (EDM) with XML DTDs; EDM versioning issues further complicate such interactions. When the EDM is represented by the more expressive XML Schema definitions, the task of mapping the exchange data model to and from application internal data models will be simplified.

• Metadata Interchange: There is growing interest in the interchange of metadata (especially for databases) and in the use of metadata registries to facilitate interoperability of database design, DBMS, query, user interface, data warehousing, and report generation tools. Examples include ISO 11179 and ANSI X3.285 data registry standards, and OMG's proposed XMI standard.

W3C schema scenarios