Presentation is loading. Please wait.

Presentation is loading. Please wait.

Eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com XML Overview Introduction to XML for.

Similar presentations


Presentation on theme: "Eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com XML Overview Introduction to XML for."— Presentation transcript:

1 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com XML Overview Introduction to XML for the MultiValue Developer

2 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Why are we here? XML is the post-SQL database environment. MultiValue developers are starting to integrate to data in this format To understand the document structure of XML files To know how XML is used To see how it relates to MultiValue systems. To add more buzzwords on your resume

3 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com eris Database to Web integration since 1992 Customers with up to $2 Billion in annual revenue Clients throughout North America Education, Medical, Manufacturing, EDI, Distribution, Sales Force Automation, Help Desk, and Reporting Systems e-Commerce and database product development, e.g., WebWizard, DataReady, mv://e-Store Los Angeles and Chicago offices

4 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Agenda About eris What is XML? How is XML used? Integration with MultiValue Syntax Advanced Issues

5 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com What is XML? XML is a cross-platform, software and hardware independent tool for transmitting information

6 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Main XML Features Like HTML, it's just ordinary ASCII text It’s an Extensible Markup Language Resembles HTML, but does not replace HTML Delivers or describes data It doesn't PERFORM anything Unlike HTML, there are no standard tags. Advanced XML users deploy Document Type Definition (DTD) and/or XML Schema DTD and Schema resemble MultiValue dictionaries Can be viewed using browsers

7 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com How is XML used? For web developers, it separates web pages from the data in the web pages For interdependent companies, it allows data to be exchanged between incompatible databases For interdependent software programs, it allows data to be exchanged between software packages For interdependent companies on the internet, it's the primary language for B2B

8 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Other uses for XML XML can be used as a database directly XML has been extended into WAP and WML

9 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Syntax Requirements Elements Attributes Validation

10 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Example XML Document Monica Gus See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

11 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com This line is a given Monica Gus See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

12 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com A new element called “note” Monica Gus See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

13 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com 5 elements that belong to note Monica Mel See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

14 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com The end of the note tag Monica Gus See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

15 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Requirements Unlike HTML, closing tags are required Unlike HTML, the tags are case sensitive Unlike HTML, the tags can nest but must nest themselves correctly Unlike HTML, space characters are not ignored

16 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com More Requirements XML documents require a root element Descriptive attributes need quotation marks (double or single)

17 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Elements Programs that deal with XML pay attention to only the element tags they care about For example, programs that pay attention to just "to" and "body" can ignore "from", "subject" and "delivery"

18 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Element Relationships Parent Child Siblings

19 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com London Sydney Introduction to XML What is XML XML Syntax Introduction to SQL SQL versus Multi-Value Popular SQL databases Another Example

20 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com The Element jargon continues element content - simple or text content - mixed content - and empty content - attributes - month and year values for the attributes - "09", "10" and "2004"

21 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Element – Naming Rules Names can contain letters, numbers, and other characters (except spaces and colons) Names must begin with a letter Names must not begin with the letters "XML" in any case combination Suggestions –Don't use periods or hyphens –Keep them simple but descriptive –Try to use names similar to how the data –Perhaps use underscores instead of periods

22 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Attributes [ ]

23 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Elements versus Attributes [ ] [ 23 09 2004 ]

24 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Why Avoid Attributes? Might be obvious for MultiValue developers –They cannot contain multiple values (child elements can) –They are not easily expandable (for future changes) –They cannot nest –Document Type Definition have a harder time validating attributes

25 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Imagine the following bad attribute situation <note to="Monica" from=“Mel" subject="See you soon" delivery_day="23" delivery_month="09" delivery_year="2004" body="Do you want to grab a drink after the Spectrum show?"

26 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com When attributes make sense: Describing the element, not the data London Sydney

27 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Advanced Issue: Validation Valid documents have rules that they can be compared against Documents that have any errors whatsoever are supposed to be rejected

28 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Example for validation <note to="Monica" from=“Mel" subject="See you soon" delivery_day="23" delivery_month="09" delivery_year="2004" body="Do you want to grab a drink after the Spectrum show?"

29 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Two types of advanced XML design Document Type Definition (DTD) allows you to create a validation –Internal Definition –External Definition Schemas allow you to create validations and database structures

30 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com DTD Syntax Internal External

31 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Example of an Internal DTD <!DOCTYPE note [ ]> Monica Mel See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

32 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Example of an External DTD <!DOCTYPE note SYSTEM "http://somewhere.com/note.dtd" > Monica Mel See you soon September 21, 2004 Do you want to grab a drink after the Spectrum show?

33 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Sample Product Catalog (Page 1 of 2) <!DOCTYPE CATALOG [ <!ATTLIST PRODUCT NAME CDATA #IMPLIED CATEGORY (HandTool|Table|Shop-Professional) "HandTool" PARTNUM CDATA #IMPLIED PLANT (Pittsburgh|Milwaukee|Chicago) "Chicago" INVENTORY (InStock|Backordered|Discontinued) "InStock">

34 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Sample Product Catalog (Page 2 of 2) <!ATTLIST SPECIFICATIONS WEIGHT CDATA #IMPLIED POWER CDATA #IMPLIED> <!ATTLIST OPTIONS FINISH (Metal|Polished|Matte) "Matte" ADAPTER (Included|Optional|NotApplicable) "Included" CASE (HardShell|Soft|NotApplicable) "HardShell"> <!ATTLIST PRICE MSRP CDATA #IMPLIED WHOLESALE CDATA #IMPLIED STREET CDATA #IMPLIED SHIPPING CDATA #IMPLIED> ]>

35 eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com Contact us Main Office:199 S. Los Robles Ave, Suite 860 Pasadena, CA 91101 Tel: (626) 535-9658 Fax: (626) 628-3229 www.eriscorp.com info @ eriscorp.com


Download ppt "Eagle rock information systems 199 So Los Robles, Suite 860, Pasadena, CA 91101 USA 626-535-9658 www.eriscorp.com XML Overview Introduction to XML for."

Similar presentations


Ads by Google