DEVELOPING A MESSAGE PARSER TO BUILD THE TEST CASE GENERATOR

Size: px
Start display at page:

Download "DEVELOPING A MESSAGE PARSER TO BUILD THE TEST CASE GENERATOR"

Transcription

1 CHAPTER 3 DEVELOPING A MESSAGE PARSER TO BUILD THE TEST CASE GENERATOR 3.1 Introduction In recent times, XML messaging has grabbed the eyes of everyone. The importance of the XML messages with in the application has grown significantly. As a result, different parsing mechanisms to parse the XML messages are in place. Most applications use the XML parsing or the XML Name Space parsing within their applications. One of the main limitations of XML Parser is its performance is low compared to others. The processing performance of XML Parser can be increased by analyzing the memory characteristics of XML parser. One such method is proposed in [55] i.e., by reducing the overheads in garbage collection. As all of us are aware both the parsers have several limitations with respect to performance. In this description, a new approach is mentioned and anticipated to construct a squashed parser which improves the performance and also provides a flexible, model-driven method to parse the XML messages. Proposed parser helps us build a more compact structured tree and optimizes memory utilization for handling the large messages. Parser is like a compiler which is used to parse the XML messages. In general, the two XML parsers DOM &SAX are considered as safe and secured. These parsers perform validation of syntax and schema of XML document. In this description we presented the features of the different XML parsers. Based on limitations of XML parsers described, a new approach is proposed to parse XML messages by squashing the parser (Squashed Parser) to achieve better performance. This squashed parser optimizes memory utilization and generates compact message tree. 49

2 XML Messaging A message is a group of fields of data sent instantly or received altogether among different applications of software. A message usually has an element-header (which stocks information control about the active message) and an active payload (the real data of the message). To perform some kind of functions, the system of giving different messages helps us to interact with different high-potential systems. This type of communication by sending and receiving message is often called as message oriented communication to execute the said operation, in disparity to a Remote Procedure Call - RPC. For Example an for web-based applications, the idea of giving messages holds so many attributes of folks sending s to the persons. David Gulbransen explains about XML messaging in detail in [52]. The process of sending messages be either synchronous which is considered two-way or asynchronous and uses various web-based protocols like HTTP or SMTP. Messaging in terms of SOAP is identified as the XML massaging /RPC standard to allow the passive interchange of information also provides a frame work for XML messaging. SOAP messaging framework This framework says that SOAP messages have an envelope that contains a header and a body. <SOAP_ENV: Envelop XMLs: soap_env = Xml soap.org/soap/envelop/ <soap_env:encoding style= <soap_env: header> <soap_env:header> <soap_env:body> <soap_env:body> <soap_env:envelope> In the procedure of SOAP we will identify profound usage of namespaces of XML. For example, the namespace called SOAP_ENV mentioned above denotes theoretical rudiments that are related to its message envelope, optional header and fixed body. SOAP messaging framework is further explained in [53]. 50

3 Why do we model messages? In general, messages don t have the nature of self-describing. Moreover, an accent model is required to start its parsing process to parse this message bit stream. For example, an active message which is created with the help of a program preferably C is a series of or stream of binary data. Hence, it is pointless, until some probable astuteness is required to understand it. Such validation does require a model in order to identify whether all the messages are correctly structured or not. 3.2 How to parse XML Messages We can use any parser to parse an XML document that contains messages. You should verify your parser s compliance with the XML specification. If you want to build and parse XML messages, you can use a model called DOM often mentioned as Document Object Model, which is a in-house standard of W3C and many languages support the DOM API, which allow you to build and parse XML messages. We need a DOM parser to parse XML from strings into DOM trees. DOM Parser permits you to retrieve any slice of the document frequently and alter the structure of the DOM tree. We can also parse XML with SAX. This parser cannot make by instance any core structure. But it receipts the incidences of elements of an input based document as events, and conveys to the appropriate client about what it want to read. Even though a lot number of XML parsers are obtainable, selecting the appropriate one is a challenging prospect. Actually there are 3 types of interesting parsing techniques of XML which are very much accepted and are utilized for java. An XML parser usually accepts a string which is serialized as a unrefined input and basically conduct collection of operations. Firstly, the verification of XML data is done for syntactical errors and identifying well its well forming nature. It verifies whether the starting tag and ending tag match with each other or not. As we discussed earlier, the 3 parsing techniques of XML are DOM, SAX and StAX [63]. 51

4 XML name space parsing: XML namespace gives a technique to evade the conflicts of element name. The namespace declaration syntax is: xmlns: def-prefix= URI Example: <h:table xmlns:h= <h:tr> <h?td>oranges</h:td> <hd:td>pomegranets</h:td> </h:tr> </h:table> xmlns: XML declaration example The xmlns parser creates a tree structure that represents an xml declaration. An xml declaration is considered to be a document of XML and contain its version as 1.0 encoding= UTF-8, standalone values as yes. The Figure 3.1 is the tree structure that is created by xmlns parser for this declaration. Xml declaration Value of the version= 1.0 Value of encoding= UTF-8 Value of standalone= yes Figure 3.1: Tree structure Source: 52

5 Performance limitations of XML parsers and xmlns parser 1. In general XML parsing is recognized to have deprived performance characteristics. 2. XML processing needs parsing of xml document, more often CPU interactive 3. The real performance of numerous xml operations is identified by XML parser 4. Performance of a parser normally based on distinctiveness of the document. XML parser often contains backtracking mechanism in it which reduces the performance. A schema specific XML parsing mechanism is proposed in [64] which reduces the space and time required resulting in High performance XML parsing. XMLNSC Parser The XMLNSC parser [54] provides high performance with optional XML Schema validation. In model driven mode XMLNC parser provides extra features to parse XML documents. Enhancements to the XMLNSC domain A new high speed parser was developed by IBM research where the domain of XMLNSC is shifted to use this fresh parser. The name of the parser is IBM s Xerces parser. Analyzing the performance of a parser We do not get good performance by transferring and parsing a huge group of XML files; because usage of XML is memory, CPU and network intensive. We should not create a new parser every time we want to parse; rather we have to reuse the parser instance. A group of reusable parser instances can be used if we have multiple threads to parse The configuration of the parser may affect the parser performance.for example, if we are interested in evaluating the performance of a parser with DTDS we can use DTD configuration. Various types of parsers DOM, SAX and StAX are studied and their operational and performance characteristics are explained in [57]. 3.3 Methodology In this chapter, we mentioned the methodology called Opaque parsing methodology. It is a performance feature that is offered by the XMLNSC domain. When you are designing the message flow certain elements in a particular message were not referenced by the message flow, 53

6 and then we can say that these elements are parsed opaquely. This procedure can reduce the expenses of doing parsing and abruptly writing these messages and may get better presentation of some parts of the message flow. Even though an opaque element represents a sub tree in the XML document, it has no child elements in the message tree. Parser Parser is treated as set of instructions, usually basic slice of a well-known compiler which takes input in the form of consecutive source program commands, communicating online commands, and markup tags and finally decomposing them into slices which are accomplished by other constituents in compiler. The main hindrance to evolution of parsers is time delay caused due to statistical data collected by lengthy training phases. New techniques are being invented in indexing techniques that reduce the length of training phases. One such technique is explained in [59]. Types of Parsers The parser which uses parsing contains Top-down parsers and bottom-up parsers. Parsing in terms of Top-down has: Recursive descent parser LL parser Early parser Parsing with-respect-to Bottom-up has: Precedence parser Operator precedence parser Simple precedence parser BC parsing i) LR parser [61,62] ii) CYK parser Various types of parsers are explained in detail in [57,58,59,60,61]. 3.4 Scope The scope of the description is to analyze different parsers and identifying how we can get the DST (Domain structure trees), where it is used in XML and also identifying a parser that shows high performance nothing but a Squashed parser. 54

7 3.5 Advantages and disadvantages of XML parsers and parsers in Java The attitude of the XML parser is to transform an XML document into a DOM object of XML normally be operated with a java script. The difference between DOM and SAX parser can be described in terms of performance. Basically a DOM parser creates a tree structure in the residential memory from the document that contains raw input and sometimes pauses for requests from an authenticated client. In fact a DOM parser continuously assists the client application with the whole document keeping in mind about how much amount is really desirable by the client. It is very easy to use for the programmer, but could be too much overhead for large documents. SAX (Simple API for XML) parser read through document once and creates a stream of events SAX parser assists the application of the client only with parts of the abstract document at any point of time. Disadvantage of SAX is each and every incoming event should be implemented by event handlers. Anyway, we have not mentioned Anagram which is an example for java parser. 3.6 Difference between a DOM parser and SAX parser As mentioned above DOM parser makes a tree structure in the residential memory, but a SAX parser does not make any core structure. Both SAX and DOM parser have their benefits and difficulties and which is well be contingent on the characteristics of your application. SAX parser can get better speed because it serves client with only pieces of data instead of entire document. An API which is tree based resides on a tree structure and thereafter supplies core interfaces on constituents of a tree which is a DOM document such as document interface, node interface, element interface, attar interface and so on. A DOM parser is rich in functionality. Actually there won t be any space when the document is too large. 55

8 3.7 XML Parsing The XML parser is the processor that reads the XML document and by defining entities we ll get parsed data and unparsed data thereby specifying character data along with mark up Parsing Process Moreover, a different lexical analyzer is used by the parser to make tokens in compliance to and from the sequence of input typescript. The parsing is an activity done by a parser to convert a series or stream of tokens from a scanner to a parse tree. And encoding and decoding of strings with HTML type script parameters. The process of parsing converts the given text into a core data structure, normally a tree, which is appropriate for future processing and which arrests the implicit hierarchy in particular and classification of the input. Generally, most of the parsers function in two different stages, first recognizing the expressive tokens in the predefined input, and then constructing a parse tree from the identified tokens. This behavior is shown in Figure 3.2. XML Parser (Processor) XML Document parameters Data parsed Data not parsed Type script Type script data Mark up Figure 3.2: Parsing Process 56

9 3.7.2 Parsing with DOM DOM parsing depends on a tree-based structure which constructs the whole tree in the residential memory. Normally DOM somewhat looks like a basic structure of tree type and the XML document is treated as the root from this the original DOM trees are formed; and we know that the root element has minimum of one child node, and more often the root maintains these rudiments that keep them within the model code. All the elements which are in the catalogue have child nodes, which can be used as elements. A new technique for data retrieval is presented in [66] which use traditional DOM parsing technique along with cache to speed up the data retrieval resulting in high performance. Creating a DOM tree The program of the DOM initially obtains the original filename of XML and constructs a DOM based tree. It often uses a predefined function called getelementsbytagname ( ) to find all elements of DOM nodes which are used as the elements of the title. It also uses the function getfirstchild ( ) method, if at all there are numerous children. Key Points: 1. Usually the initial child element is kept between the starting and ending tags of an element. 2. The Data Object Model tree usually consumes lot of memory. A new type of DOM parser is explained in [67] which increase the performance by reducing the modeling time Parsing with SAX SAX parsing [69] depends on the flow of set of events and it is purely a model which is based on events to process the documents of XML. Despite the fact that it is not an official standard affirmed by consortium W3C, but this has become so popular outline of an API. It constructs the whole tree in order to signify the data and where this parser out streams or outlined a preorder sequence of events during a casual reading of the document. The mentioned set of identified events is moved to the handlers. Event handlers can offer right of entry to the data of the XML document. In fact the following are the 3 types of event handlers: 57

10 1. DTD handler- often used to access the data. 2. Error handler which is used to access the errors. 3. Content handler often used to access the content. Parallelism is introduced in SAX parser to increase the performance as explained in [68] XML Syntax Validation The syntax validation is being conducted or done based on 3 different methods. 1. Plain XML 2. Content based (against schema) 3. Content and value based (data) According to the industry standards, the people who are managing large projects or small projects have two different types of parsing. They are: Instant or abrupt (Immediate) Immediate parsing is all about validating whatever that you see on the screen or display device, Overall or absolute (Complete): Overall or complete is validation of all Childs and nodes. The actual work includes: 1. Starting up by taking WSDL (Web Services Description language) file 2. Parsing checking the correctness of the input messages and syntax validation. 3. Constructing DST (Domain Structured Tree) Then validation is done according to the 3 methods of that we mentioned earlier. Validation against Schema Actually the MRM parser uses the concept of validation cannot adapt precisely to w3c standard of XML schema specification. In fact, the MRM also provides standards-compliant schema validation. If the selection of validation is done then we have to give the suitable name of the message set related to the selection. 58

11 3.7.5 Java Architecture for XML binding The Figure 3.3 explains marshal where it is the process of creating an XML document from a content tree; and unmarshal is creating a tree of content objects that represents the content and organization of the XML document. Unmarshal is not a DOM tree. XML Schema Bind compiler Classes and interfaces derived by Schema XML document JAXB API Objects of content XML Parser for java Figure 3.3: Architecture for marshal and unmarshal in java DTD Parsed XML XML Document DOM Parser XSLT Processor Transformed XML document schema XSL Style sheet XML commands parsed Figure 3.4: Giving XML document as input 59

12 The Figure3.4 talks about giving XML document stringently as an input often to the XML parser for java. The interface of the parser immediately parses the given XML document and the XML which is parsed is moved to the application for future processing. After that the parser contains an integrated processor like XSL Transformation (XSLT) is required for identifying this XML data by using different XSL Style Sheets. With the help of this processor, we can thereafter convert XML document from core XML to core XML or from core XML to core HTML. 3.8 Migrating to Squashed Parser If we are using an XML domain parsing, to have the advantages of standard-compliant XML schema validations, one can use the approach of squashing a parser, which will help us in reducing the usage of the processor. Squashed parser differs from a normal parser in the following way: 1. It constructs/builds a squashed message tree. 2. It uses different field style constants. 3. It casts inline DTD. 3.9 Reasons for Migration If a message uses the XML domain, you have to migrate to squash to take the advantage of the XML schema validations. Moreover, if our message flow uses MRM domain, you might migrate to squash to obtain standard-complaint validation. The messages in this domain are parsed by MRM parser. When it comes to XMLNSC, it offers high performance and also the standardscompliant XML schema validation in a message flow at any point. If our conceptual internet pages are the well-known standards compliant of W3C, we can put forward our so called internet pages for immediate validation of HTML in the link which is apt for validation. 60

13 The standards-compliant has basically two uses: Whether the web site s mark-up is in compliance to the standards given by the w3c for the mark-up languages used may be either HTML or XHTML. With respect to the browser - whether the browser interprets these standards properly Disadvantages of xmlns Parser Message tree is very compact. The opaque parsing is partial means that support from ESQL is only to parse a single element opaquely. There is no ultra high performance. No schema validation. It is not a model-driven parser. And it does not use an XML schema when parsing XML documents Disadvantages of xmlnsc Parser 1. The schema validation is optional. 2. The in-line DTD support is also partial, where DTD s are processed, but discarded. 3. The XML data model compliance is partial. Key Points: In a model driven mode, the XMLNSC parser is guided by the schema of XML, which explains about the original makeup and formation of the message tree. (This can be called logical model). Some body parsers are model-driven which means that they use predefined messages from a message set when parsing and writing a parser. When we use a model-driven parser we have to specify the message set A Squashed Parser A parser which is squashed (a squashed parser) has very good features and also offers best performance features for most of the applications. 61

14 1. If we want to get a squashed parser; we have to consider the schema validation and even sometimes syntax validation as optional where most of the users are spending their time, money and effort. 2. Microsoft has already defined a parser; it is not required to create a new parser. If we use a schema (with xml/serialized) it simplifies the coding process. Moreover, when compared with DOM parser, a SAX parser or pull parser gives you much better performance. 3. Custom validation is performed when the request document processes from the document queue. 4. In our parser we have considered schema validation as optional. 5. And we know that opaque parsing is a performance feature that is offered by XMLNS domain. If we want to specify that parsing an XML element opaquely, we have to use ESQL CREATE statement with a PARSE clause to parse the XML document. 6. In the case of XMLNS parser if you want to parse a message by using XMLNS domain, select message domain as XMLNS on the appropriate node in the message flow. The SQUASHED parser differs from the traditional parser in the following ways: 1. The parser which is squashed creates a very compact message tree. (Less memory is used when building a tree). 2. It uses different field type constants. 3. It discards inline DTDs 4. The SQUASHED parser uses field types to identify the XML constructs in the message tree. 5. When writing a message tree, the Squashed parser selects namespace prefixes by detecting and using xmlns attributes in the message tree Features of a Squashed Parser If namespace is present, information related to namespace can be used. 1. It supports on-demand parsing which is nothing but partial parsing. 2. It creates a very compact (uses less memory) message tree. 62

15 3. It supports opaque parsing and gives high performance. The concept of squashed parser is explained in detailed in [73] On-Demand Parsing On-demand parsing [72] is also called partial parsing, where an input message is parsed only when it is necessary that a reference is resolved to a part of its data or content. If within the message flow, there is no referencing of message content (i.e) no message content manipulation is done, then the body of the message is not parsed. The property of parse timing of a node of the message flow controls the on-demand behavior of the parser, instead of immediately parsing the bit stream. We can set the parse timing property to either on-demand (which is by default), Instant or Absolute Conclusion The term parsing always is understood as the division of complex and compound structures into their basic predefined parts, and the basic parsing well-framed technology as the tools, formal methods and the required software to immediately parse XML document without human intervention. It is understood that the concept of parsing is a chief area of research being conducted in the automatic basic processing of human language. In fact, the parsers are used in many areas of different applications. For instance, question and answer sessions, withdrawal of report from text, speech recognition and basic understanding of its details, and machine translation. Brand new expansions in the concept of parsing technology are therefore extensively relevant and applicable. And here we have given an approach how a parser can be squashed to achieve optimum performance. After a long time analysis of parsers and their advantages and disadvantages, it is highly recommended to select a high speed parser so that it works more efficiently like squashed parser. 63

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 7 XML

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 7 XML Chapter 7 XML 7.1 Introduction extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML Lax syntactical rules Many complex features that are rarely used HTML

More information

7.1 Introduction. extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML

7.1 Introduction. extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML 7.1 Introduction extensible Markup Language Developed from SGML A meta-markup language Deficiencies of HTML and SGML Lax syntactical rules Many complex features that are rarely used HTML is a markup language,

More information

CSI 3140 WWW Structures, Techniques and Standards. Representing Web Data: XML

CSI 3140 WWW Structures, Techniques and Standards. Representing Web Data: XML CSI 3140 WWW Structures, Techniques and Standards Representing Web Data: XML XML Example XML document: An XML document is one that follows certain syntax rules (most of which we followed for XHTML) Guy-Vincent

More information

Java EE 7: Back-end Server Application Development 4-2

Java EE 7: Back-end Server Application Development 4-2 Java EE 7: Back-end Server Application Development 4-2 XML describes data objects called XML documents that: Are composed of markup language for structuring the document data Support custom tags for data

More information

Delivery Options: Attend face-to-face in the classroom or remote-live attendance.

Delivery Options: Attend face-to-face in the classroom or remote-live attendance. XML Programming Duration: 5 Days Price: $2795 *California residents and government employees call for pricing. Discounts: We offer multiple discount options. Click here for more info. Delivery Options:

More information

The Xlint Project * 1 Motivation. 2 XML Parsing Techniques

The Xlint Project * 1 Motivation. 2 XML Parsing Techniques The Xlint Project * Juan Fernando Arguello, Yuhui Jin {jarguell, yhjin}@db.stanford.edu Stanford University December 24, 2003 1 Motivation Extensible Markup Language (XML) [1] is a simple, very flexible

More information

The XML Metalanguage

The XML Metalanguage The XML Metalanguage Mika Raento mika.raento@cs.helsinki.fi University of Helsinki Department of Computer Science Mika Raento The XML Metalanguage p.1/442 2003-09-15 Preliminaries Mika Raento The XML Metalanguage

More information

Delivery Options: Attend face-to-face in the classroom or via remote-live attendance.

Delivery Options: Attend face-to-face in the classroom or via remote-live attendance. XML Programming Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject to GST/HST Delivery Options: Attend face-to-face in the classroom or

More information

Introduction to XML. XML: basic elements

Introduction to XML. XML: basic elements Introduction to XML XML: basic elements XML Trying to wrap your brain around XML is sort of like trying to put an octopus in a bottle. Every time you think you have it under control, a new tentacle shows

More information

SDMX self-learning package XML based technologies used in SDMX-IT TEST

SDMX self-learning package XML based technologies used in SDMX-IT TEST SDMX self-learning package XML based technologies used in SDMX-IT TEST Produced by Eurostat, Directorate B: Statistical Methodologies and Tools Unit B-5: Statistical Information Technologies Last update

More information

XML: Introduction. !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... Directive... 9:11

XML: Introduction. !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... Directive... 9:11 !important Declaration... 9:11 #FIXED... 7:5 #IMPLIED... 7:5 #REQUIRED... 7:4 @import Directive... 9:11 A Absolute Units of Length... 9:14 Addressing the First Line... 9:6 Assigning Meaning to XML Tags...

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2017 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 4 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid= 2465 1

More information

XML. Objectives. Duration. Audience. Pre-Requisites

XML. Objectives. Duration. Audience. Pre-Requisites XML XML - extensible Markup Language is a family of standardized data formats. XML is used for data transmission and storage. Common applications of XML include business to business transactions, web services

More information

XML Extensible Markup Language

XML Extensible Markup Language XML Extensible Markup Language Generic format for structured representation of data. DD1335 (Lecture 9) Basic Internet Programming Spring 2010 1 / 34 XML Extensible Markup Language Generic format for structured

More information

COMP9321 Web Application Engineering

COMP9321 Web Application Engineering COMP9321 Web Application Engineering Semester 2, 2015 Dr. Amin Beheshti Service Oriented Computing Group, CSE, UNSW Australia Week 4 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2411 1 Extensible

More information

The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet.

The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet. 1 2 3 The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet. That's because XML has emerged as the standard

More information

11. EXTENSIBLE MARKUP LANGUAGE (XML)

11. EXTENSIBLE MARKUP LANGUAGE (XML) 11. EXTENSIBLE MARKUP LANGUAGE (XML) Introduction Extensible Markup Language is a Meta language that describes the contents of the document. So these tags can be called as self-describing data tags. XML

More information

XML Parsers. Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University

XML Parsers. Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University XML Parsers Asst. Prof. Dr. Kanda Runapongsa Saikaew (krunapon@kku.ac.th) Dept. of Computer Engineering Khon Kaen University 1 Overview What are XML Parsers? Programming Interfaces of XML Parsers DOM:

More information

Agenda. Summary of Previous Session. XML for Java Developers G Session 6 - Main Theme XML Information Processing (Part II)

Agenda. Summary of Previous Session. XML for Java Developers G Session 6 - Main Theme XML Information Processing (Part II) XML for Java Developers G22.3033-002 Session 6 - Main Theme XML Information Processing (Part II) Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical

More information

Chapter 1: Getting Started. You will learn:

Chapter 1: Getting Started. You will learn: Chapter 1: Getting Started SGML and SGML document components. What XML is. XML as compared to SGML and HTML. XML format. XML specifications. XML architecture. Data structure namespaces. Data delivery,

More information

XML: some structural principles

XML: some structural principles XML: some structural principles Hayo Thielecke University of Birmingham www.cs.bham.ac.uk/~hxt October 18, 2011 1 / 25 XML in SSC1 versus First year info+web Information and the Web is optional in Year

More information

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. XML 2 APPLIATION hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: How to create an XML document. The role of the document map, prolog, and XML declarations. Standalone declarations.

More information

Introduction to XML. Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University

Introduction to XML. Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University Introduction to XML Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University http://gear.kku.ac.th/~krunapon/xmlws 1 Topics p What is XML? p Why XML? p Where does XML

More information

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline Advanced Java Database Programming JDBC overview SQL- Structured Query Language JDBC Programming Concepts Query Execution Scrollable

More information

XML: Managing with the Java Platform

XML: Managing with the Java Platform In order to learn which questions have been answered correctly: 1. Print these pages. 2. Answer the questions. 3. Send this assessment with the answers via: a. FAX to (212) 967-3498. Or b. Mail the answers

More information

XML: Extensible Markup Language

XML: Extensible Markup Language XML: Extensible Markup Language CSC 375, Fall 2015 XML is a classic political compromise: it balances the needs of man and machine by being equally unreadable to both. Matthew Might Slides slightly modified

More information

M359 Block5 - Lecture12 Eng/ Waleed Omar

M359 Block5 - Lecture12 Eng/ Waleed Omar Documents and markup languages The term XML stands for extensible Markup Language. Used to label the different parts of documents. Labeling helps in: Displaying the documents in a formatted way Querying

More information

Introduction to XML 3/14/12. Introduction to XML

Introduction to XML 3/14/12. Introduction to XML Introduction to XML Asst. Prof. Dr. Kanda Runapongsa Saikaew Dept. of Computer Engineering Khon Kaen University http://gear.kku.ac.th/~krunapon/xmlws 1 Topics p What is XML? p Why XML? p Where does XML

More information

Intro to XML. Borrowed, with author s permission, from:

Intro to XML. Borrowed, with author s permission, from: Intro to XML Borrowed, with author s permission, from: http://business.unr.edu/faculty/ekedahl/is389/topic3a ndroidintroduction/is389androidbasics.aspx Part 1: XML Basics Why XML Here? You need to understand

More information

Chapter 2 XML, XML Schema, XSLT, and XPath

Chapter 2 XML, XML Schema, XSLT, and XPath Summary Chapter 2 XML, XML Schema, XSLT, and XPath Ryan McAlister XML stands for Extensible Markup Language, meaning it uses tags to denote data much like HTML. Unlike HTML though it was designed to carry

More information

CHAPTER 2 LITERATURE SURVEY 2. FIRST LOOK ON WEB SERVICES Web Services

CHAPTER 2 LITERATURE SURVEY 2. FIRST LOOK ON WEB SERVICES Web Services CHAPTER 2 LITERATURE SURVEY 2. FIRST LOOK ON WEB SERVICES 2.1. Web Services Usually web service can be understood as a way of message transfer among two devices across a network. The idea behind using

More information

A tutorial report for SENG Agent Based Software Engineering. Course Instructor: Dr. Behrouz H. Far. XML Tutorial.

A tutorial report for SENG Agent Based Software Engineering. Course Instructor: Dr. Behrouz H. Far. XML Tutorial. A tutorial report for SENG 609.22 Agent Based Software Engineering Course Instructor: Dr. Behrouz H. Far XML Tutorial Yanan Zhang Department of Electrical and Computer Engineering University of Calgary

More information

CS6501 IP Unit IV Page 1

CS6501 IP Unit IV Page 1 CS6501 Internet Programming Unit IV Part - A 1. What is PHP? PHP - Hypertext Preprocessor -one of the most popular server-side scripting languages for creating dynamic Web pages. - an open-source technology

More information

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web

XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Web Services. XML Web Service? A programmable component Provides a particular function for an application Can be published, located, and invoked across the Web Platform: Windows COM Component Previously

More information

Acceleration Techniques for XML Processors

Acceleration Techniques for XML Processors Acceleration Techniques for XML Processors Biswadeep Nag Staff Engineer Performance Engineering XMLConference 2004 XML is Everywhere Configuration files (web.xml, TurboTax) Office documents (StarOffice,

More information

Syntax Analysis. Chapter 4

Syntax Analysis. Chapter 4 Syntax Analysis Chapter 4 Check (Important) http://www.engineersgarage.com/contributio n/difference-between-compiler-andinterpreter Introduction covers the major parsing methods that are typically used

More information

XML Processing & Web Services. Husni Husni.trunojoyo.ac.id

XML Processing & Web Services. Husni Husni.trunojoyo.ac.id XML Processing & Web Services Husni Husni.trunojoyo.ac.id Based on Randy Connolly and Ricardo Hoar Fundamentals of Web Development, Pearson Education, 2015 Objectives 1 XML Overview 2 XML Processing 3

More information

extensible Markup Language (XML) Basic Concepts

extensible Markup Language (XML) Basic Concepts (XML) Basic Concepts Giuseppe Della Penna Università degli Studi di L Aquila dellapenna@univaq.it http://www.di.univaq.it/gdellape This work is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike

More information

Call: Core&Advanced Java Springframeworks Course Content:35-40hours Course Outline

Call: Core&Advanced Java Springframeworks Course Content:35-40hours Course Outline Core&Advanced Java Springframeworks Course Content:35-40hours Course Outline Object-Oriented Programming (OOP) concepts Introduction Abstraction Encapsulation Inheritance Polymorphism Getting started with

More information

.. Cal Poly CPE/CSC 366: Database Modeling, Design and Implementation Alexander Dekhtyar..

.. Cal Poly CPE/CSC 366: Database Modeling, Design and Implementation Alexander Dekhtyar.. .. Cal Poly CPE/CSC 366: Database Modeling, Design and Implementation Alexander Dekhtyar.. XML in a Nutshell XML, extended Markup Language is a collection of rules for universal markup of data. Brief History

More information

XML. extensible Markup Language. Overview. Overview. Overview XML Components Document Type Definition (DTD) Attributes and Tags An XML schema

XML. extensible Markup Language. Overview. Overview. Overview XML Components Document Type Definition (DTD) Attributes and Tags An XML schema XML extensible Markup Language An introduction in XML and parsing XML Overview XML Components Document Type Definition (DTD) Attributes and Tags An XML schema 3011 Compiler Construction 2 Overview Overview

More information

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI

DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI DHANALAKSHMI COLLEGE OF ENGINEERING, CHENNAI Department of Information Technology IT6801 SERVICE ORIENTED ARCHITECTURE Anna University 2 & 16 Mark Questions & Answers Year / Semester: IV / VII Regulation:

More information

COMP9321 Web Application Engineering. Extensible Markup Language (XML)

COMP9321 Web Application Engineering. Extensible Markup Language (XML) COMP9321 Web Application Engineering Extensible Markup Language (XML) Dr. Basem Suleiman Service Oriented Computing Group, CSE, UNSW Australia Semester 1, 2016, Week 4 http://webapps.cse.unsw.edu.au/webcms2/course/index.php?cid=2442

More information

CSE 12 Abstract Syntax Trees

CSE 12 Abstract Syntax Trees CSE 12 Abstract Syntax Trees Compilers and Interpreters Parse Trees and Abstract Syntax Trees (AST's) Creating and Evaluating AST's The Table ADT and Symbol Tables 16 Using Algorithms and Data Structures

More information

SUN. Java Platform Enterprise Edition 6 Web Services Developer Certified Professional

SUN. Java Platform Enterprise Edition 6 Web Services Developer Certified Professional SUN 311-232 Java Platform Enterprise Edition 6 Web Services Developer Certified Professional Download Full Version : http://killexams.com/pass4sure/exam-detail/311-232 QUESTION: 109 What are three best

More information

XML for Java Developers G Session 2 - Sub-Topic 1 Beginning XML. Dr. Jean-Claude Franchitti

XML for Java Developers G Session 2 - Sub-Topic 1 Beginning XML. Dr. Jean-Claude Franchitti XML for Java Developers G22.3033-002 Session 2 - Sub-Topic 1 Beginning XML Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical Sciences Objectives

More information

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 27-1

Copyright 2007 Ramez Elmasri and Shamkant B. Navathe. Slide 27-1 Slide 27-1 Chapter 27 XML: Extensible Markup Language Chapter Outline Introduction Structured, Semi structured, and Unstructured Data. XML Hierarchical (Tree) Data Model. XML Documents, DTD, and XML Schema.

More information

XML. Jonathan Geisler. April 18, 2008

XML. Jonathan Geisler. April 18, 2008 April 18, 2008 What is? IS... What is? IS... Text (portable) What is? IS... Text (portable) Markup (human readable) What is? IS... Text (portable) Markup (human readable) Extensible (valuable for future)

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 000-141 Title : XML and related technologies Vendors : IBM Version : DEMO

More information

XML Introduction 1. XML Stands for EXtensible Mark-up Language (XML). 2. SGML Electronic Publishing challenges -1986 3. HTML Web Presentation challenges -1991 4. XML Data Representation challenges -1996

More information

Lesson 5 Web Service Interface Definition (Part II)

Lesson 5 Web Service Interface Definition (Part II) Lesson 5 Web Service Interface Definition (Part II) Service Oriented Architectures Security Module 1 - Basic technologies Unit 3 WSDL Ernesto Damiani Università di Milano Controlling the style (1) The

More information

KNSP: A Kweelt - Niagara based Quilt Processor Inside Cocoon over Apache

KNSP: A Kweelt - Niagara based Quilt Processor Inside Cocoon over Apache KNSP: A Kweelt - Niagara based Quilt Processor Inside Cocoon over Apache Xidong Wang & Shiliang Hu {wxd, shiliang}@cs.wisc.edu Department of Computer Science, University of Wisconsin Madison 1. Introduction

More information

Data Presentation and Markup Languages

Data Presentation and Markup Languages Data Presentation and Markup Languages MIE456 Tutorial Acknowledgements Some contents of this presentation are borrowed from a tutorial given at VLDB 2000, Cairo, Agypte (www.vldb.org) by D. Florescu &.

More information

SOAP, WSDL, HTTP, XML, XSD, DTD, UDDI - what the?

SOAP, WSDL, HTTP, XML, XSD, DTD, UDDI - what the? SOAP, WSDL, HTTP, XML, XSD, DTD, UDDI - what the? By Aaron Bartell Copyright Aaron Bartell 2013 by Aaron Bartell aaron@mowyourlawn.com Agenda Why are we at this point in technology? XML Holding data the

More information

XML ELECTRONIC SIGNATURES

XML ELECTRONIC SIGNATURES XML ELECTRONIC SIGNATURES Application according to the international standard XML Signature Syntax and Processing DI Gregor Karlinger Graz University of Technology Institute for Applied Information Processing

More information

XML for Java Developers G Session 8 - Main Theme XML Information Rendering (Part II) Dr. Jean-Claude Franchitti

XML for Java Developers G Session 8 - Main Theme XML Information Rendering (Part II) Dr. Jean-Claude Franchitti XML for Java Developers G22.3033-002 Session 8 - Main Theme XML Information Rendering (Part II) Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical

More information

COMPILER CONSTRUCTION LAB 2 THE SYMBOL TABLE. Tutorial 2 LABS. PHASES OF A COMPILER Source Program. Lab 2 Symbol table

COMPILER CONSTRUCTION LAB 2 THE SYMBOL TABLE. Tutorial 2 LABS. PHASES OF A COMPILER Source Program. Lab 2 Symbol table COMPILER CONSTRUCTION Lab 2 Symbol table LABS Lab 3 LR parsing and abstract syntax tree construction using ''bison' Lab 4 Semantic analysis (type checking) PHASES OF A COMPILER Source Program Lab 2 Symtab

More information

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILERS

PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILERS Objective PRINCIPLES OF COMPILER DESIGN UNIT I INTRODUCTION TO COMPILERS Explain what is meant by compiler. Explain how the compiler works. Describe various analysis of the source program. Describe the

More information

SDMX self-learning package No. 3 Student book. SDMX-ML Messages

SDMX self-learning package No. 3 Student book. SDMX-ML Messages No. 3 Student book SDMX-ML Messages Produced by Eurostat, Directorate B: Statistical Methodologies and Tools Unit B-5: Statistical Information Technologies Last update of content February 2010 Version

More information

SOAP Messages with Attachments

SOAP Messages with Attachments SOAP Messages with Attachments W3C Note 11 December 2000 This version: http://www.w3.org/tr/2000/note-soap-attachments-20001211 Latest version: Authors: John J. Barton, Hewlett Packard Labs Satish Thatte,

More information

CSCI B522 Lecture 11 Naming and Scope 8 Oct, 2009

CSCI B522 Lecture 11 Naming and Scope 8 Oct, 2009 CSCI B522 Lecture 11 Naming and Scope 8 Oct, 2009 Lecture notes for CS 6110 (Spring 09) taught by Andrew Myers at Cornell; edited by Amal Ahmed, Fall 09. 1 Static vs. dynamic scoping The scope of a variable

More information

Programming Web Services in Java

Programming Web Services in Java Programming Web Services in Java Description Audience This course teaches students how to program Web Services in Java, including using SOAP, WSDL and UDDI. Developers and other people interested in learning

More information

Chapter 13 XML: Extensible Markup Language

Chapter 13 XML: Extensible Markup Language Chapter 13 XML: Extensible Markup Language - Internet applications provide Web interfaces to databases (data sources) - Three-tier architecture Client V Application Programs Webserver V Database Server

More information

Chapter 10: Understanding the Standards

Chapter 10: Understanding the Standards Disclaimer: All words, pictures are adopted from Learning Web Design (3 rd eds.) by Jennifer Niederst Robbins, published by O Reilly 2007. Chapter 10: Understanding the Standards CSc2320 In this chapter

More information

IT6801-SERVICE ORIENTED ARCHITECTURE

IT6801-SERVICE ORIENTED ARCHITECTURE ST.JOSEPH COLLEGE OF ENGINEERING DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING IT 6801-SERVICE ORIENTED ARCHITECTURE UNIT I 2 MARKS 1. Define XML. Extensible Markup Language(XML) is a markup language

More information

Shankersinh Vaghela Bapu Institue of Technology

Shankersinh Vaghela Bapu Institue of Technology Branch: - 6th Sem IT Year/Sem : - 3rd /2014 Subject & Subject Code : Faculty Name : - Nitin Padariya Pre Upload Date: 31/12/2013 Submission Date: 9/1/2014 [1] Explain the need of web server and web browser

More information

We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS Designer.

We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS Designer. This presentation is a primer on WSDL. It s part of our series to help prepare you for creating BPEL projects. We recommend you review this before taking an ActiveVOS course or before you use ActiveVOS

More information

Programming Languages Third Edition. Chapter 7 Basic Semantics

Programming Languages Third Edition. Chapter 7 Basic Semantics Programming Languages Third Edition Chapter 7 Basic Semantics Objectives Understand attributes, binding, and semantic functions Understand declarations, blocks, and scope Learn how to construct a symbol

More information

CSC Web Technologies, Spring Web Data Exchange Formats

CSC Web Technologies, Spring Web Data Exchange Formats CSC 342 - Web Technologies, Spring 2017 Web Data Exchange Formats Web Data Exchange Data exchange is the process of transforming structured data from one format to another to facilitate data sharing between

More information

XML. Presented by : Guerreiro João Thanh Truong Cong

XML. Presented by : Guerreiro João Thanh Truong Cong XML Presented by : Guerreiro João Thanh Truong Cong XML : Definitions XML = Extensible Markup Language. Other Markup Language : HTML. XML HTML XML describes a Markup Language. XML is a Meta-Language. Users

More information

7.1 Introduction. 7.1 Introduction (continued) - Problem with using SGML: - SGML is a meta-markup language

7.1 Introduction. 7.1 Introduction (continued) - Problem with using SGML: - SGML is a meta-markup language 7.1 Introduction - SGML is a meta-markup language - Developed in the early 1980s; ISO std. In 1986 - HTML was developed using SGML in the early 1990s - specifically for Web documents - Two problems with

More information

STARCOUNTER. Technical Overview

STARCOUNTER. Technical Overview STARCOUNTER Technical Overview Summary 3 Introduction 4 Scope 5 Audience 5 Prerequisite Knowledge 5 Virtual Machine Database Management System 6 Weaver 7 Shared Memory 8 Atomicity 8 Consistency 9 Isolation

More information

Some more XML applications and XML-related standards (XLink, XPointer, XForms)

Some more XML applications and XML-related standards (XLink, XPointer, XForms) Some more XML applications and XML-related standards (XLink, XPointer, XForms) Patryk Czarnik XML and Applications 2014/2015 Lecture 12 19.01.2015 Standards for inter-document relations XPointer addressing

More information

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC.

XML 2 APPLICATION. Chapter SYS-ED/ COMPUTER EDUCATION TECHNIQUES, INC. XML 2 APPLIATION hapter SYS-ED/ OMPUTER EDUATION TEHNIQUES, IN. Objectives You will learn: How to create an XML document. The role of the document map, prolog, and XML declarations. Standalone declarations.

More information

SDPL : XML Basics 2. SDPL : XML Basics 1. SDPL : XML Basics 4. SDPL : XML Basics 3. SDPL : XML Basics 5

SDPL : XML Basics 2. SDPL : XML Basics 1. SDPL : XML Basics 4. SDPL : XML Basics 3. SDPL : XML Basics 5 2 Basics of XML and XML documents 2.1 XML and XML documents Survivor's Guide to XML, or XML for Computer Scientists / Dummies 2.1 XML and XML documents 2.2 Basics of XML DTDs 2.3 XML Namespaces XML 1.0

More information

What is XML? XML is designed to transport and store data.

What is XML? XML is designed to transport and store data. What is XML? XML stands for extensible Markup Language. XML is designed to transport and store data. HTML was designed to display data. XML is a markup language much like HTML XML was designed to carry

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

XML. Rodrigo García Carmona Universidad San Pablo-CEU Escuela Politécnica Superior

XML. Rodrigo García Carmona Universidad San Pablo-CEU Escuela Politécnica Superior XML Rodrigo García Carmona Universidad San Pablo-CEU Escuela Politécnica Superior XML INTRODUCTION 2 THE XML LANGUAGE XML: Extensible Markup Language Standard for the presentation and transmission of information.

More information

Markup Languages SGML, HTML, XML, XHTML. CS 431 February 13, 2006 Carl Lagoze Cornell University

Markup Languages SGML, HTML, XML, XHTML. CS 431 February 13, 2006 Carl Lagoze Cornell University Markup Languages SGML, HTML, XML, XHTML CS 431 February 13, 2006 Carl Lagoze Cornell University Problem Richness of text Elements: letters, numbers, symbols, case Structure: words, sentences, paragraphs,

More information

User Interaction: XML and JSON

User Interaction: XML and JSON User Interaction: XML and JSON Asst. Professor Donald J. Patterson INF 133 Fall 2011 1 What might a design notebook be like? Cooler What does a design notebook entry look like? HTML and XML 1989: Tim Berners-Lee

More information

Inventions on using LDAP for different purposes- Part-3

Inventions on using LDAP for different purposes- Part-3 From the SelectedWorks of Umakant Mishra August, 2006 Inventions on using LDAP for different purposes- Part-3 Umakant Mishra Available at: https://works.bepress.com/umakant_mishra/64/ Inventions on using

More information

Session [2] Information Modeling with XSD and DTD

Session [2] Information Modeling with XSD and DTD Session [2] Information Modeling with XSD and DTD September 12, 2000 Horst Rechner Q&A from Session [1] HTML without XML See Code HDBMS vs. RDBMS What does XDR mean? XML-Data Reduced Utilized in Biztalk

More information

Architectural Design. Architectural Design. Software Architecture. Architectural Models

Architectural Design. Architectural Design. Software Architecture. Architectural Models Architectural Design Architectural Design Chapter 6 Architectural Design: -the design the desig process for identifying: - the subsystems making up a system and - the relationships between the subsystems

More information

IT2353 WEB TECHNOLOGY Question Bank UNIT I 1. What is the difference between node and host? 2. What is the purpose of routers? 3. Define protocol. 4.

IT2353 WEB TECHNOLOGY Question Bank UNIT I 1. What is the difference between node and host? 2. What is the purpose of routers? 3. Define protocol. 4. IT2353 WEB TECHNOLOGY Question Bank UNIT I 1. What is the difference between node and host? 2. What is the purpose of routers? 3. Define protocol. 4. Why are the protocols layered? 5. Define encapsulation.

More information

CS415 Compilers. Syntax Analysis. These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University

CS415 Compilers. Syntax Analysis. These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University CS415 Compilers Syntax Analysis These slides are based on slides copyrighted by Keith Cooper, Ken Kennedy & Linda Torczon at Rice University Limits of Regular Languages Advantages of Regular Expressions

More information

Distributed Multitiered Application

Distributed Multitiered Application Distributed Multitiered Application Java EE platform uses a distributed multitiered application model for enterprise applications. Logic is divided into components https://docs.oracle.com/javaee/7/tutorial/overview004.htm

More information

IT6503 WEB PROGRAMMING. Unit-I

IT6503 WEB PROGRAMMING. Unit-I Department of Information Technology Question Bank- Odd Semester 2015-2016 IT6503 WEB PROGRAMMING Unit-I SCRIPTING 1. What is HTML? Write the format of HTML program. 2. Differentiate HTML and XHTML. 3.

More information

Introduction to Parsing

Introduction to Parsing Introduction to Parsing The Front End Source code Scanner tokens Parser IR Errors Parser Checks the stream of words and their parts of speech (produced by the scanner) for grammatical correctness Determines

More information

x ide xml Integrated Development Environment Specifications Document 1 Project Description 2 Specifi fications

x ide xml Integrated Development Environment Specifications Document 1 Project Description 2 Specifi fications x ide xml Integrated Development Environment Specifications Document Colin Hartnett (cphartne) 7 February 2003 1 Project Description There exist many integrated development environments that make large

More information

Data Exchange. Hyper-Text Markup Language. Contents: HTML Sample. HTML Motivation. Cascading Style Sheets (CSS) Problems w/html

Data Exchange. Hyper-Text Markup Language. Contents: HTML Sample. HTML Motivation. Cascading Style Sheets (CSS) Problems w/html Data Exchange Contents: Mariano Cilia / cilia@informatik.tu-darmstadt.de Origins (HTML) Schema DOM, SAX Semantic Data Exchange Integration Problems MIX Model 1 Hyper-Text Markup Language HTML Hypertext:

More information

Java J Course Outline

Java J Course Outline JAVA EE - J2SE - CORE JAVA After all having a lot number of programming languages. Why JAVA; yet another language!!! AND NOW WHY ONLY JAVA??? CHAPTER 1: INTRODUCTION What is Java? History Versioning The

More information

XML for Java Developers G Session 3 - Main Theme XML Information Modeling (Part I) Dr. Jean-Claude Franchitti

XML for Java Developers G Session 3 - Main Theme XML Information Modeling (Part I) Dr. Jean-Claude Franchitti XML for Java Developers G22.3033-002 Session 3 - Main Theme XML Information Modeling (Part I) Dr. Jean-Claude Franchitti New York University Computer Science Department Courant Institute of Mathematical

More information

XML Metadata Standards and Topic Maps

XML Metadata Standards and Topic Maps XML Metadata Standards and Topic Maps Erik Wilde 16.7.2001 XML Metadata Standards and Topic Maps 1 Outline what is XML? a syntax (not a data model!) what is the data model behind XML? XML Information Set

More information

Chapter 7: XML Namespaces

Chapter 7: XML Namespaces 7. XML Namespaces 7-1 Chapter 7: XML Namespaces References: Tim Bray, Dave Hollander, Andrew Layman: Namespaces in XML. W3C Recommendation, World Wide Web Consortium, Jan 14, 1999. [http://www.w3.org/tr/1999/rec-xml-names-19990114],

More information

Test On Line: reusing SAS code in WEB applications Author: Carlo Ramella TXT e-solutions

Test On Line: reusing SAS code in WEB applications Author: Carlo Ramella TXT e-solutions Test On Line: reusing SAS code in WEB applications Author: Carlo Ramella TXT e-solutions Chapter 1: Abstract The Proway System is a powerful complete system for Process and Testing Data Analysis in IC

More information

Part VII. Querying XML The XQuery Data Model. Marc H. Scholl (DBIS, Uni KN) XML and Databases Winter 2005/06 153

Part VII. Querying XML The XQuery Data Model. Marc H. Scholl (DBIS, Uni KN) XML and Databases Winter 2005/06 153 Part VII Querying XML The XQuery Data Model Marc H. Scholl (DBIS, Uni KN) XML and Databases Winter 2005/06 153 Outline of this part 1 Querying XML Documents Overview 2 The XQuery Data Model The XQuery

More information

Introduction to XML. An Example XML Document. The following is a very simple XML document.

Introduction to XML. An Example XML Document. The following is a very simple XML document. Introduction to XML Extensible Markup Language (XML) was standardized in 1998 after 2 years of work. However, it developed out of SGML (Standard Generalized Markup Language), a product of the 1970s and

More information

1Z Oracle. Java Platform Enterprise Edition 6 Web Services Developer Certified Expert

1Z Oracle. Java Platform Enterprise Edition 6 Web Services Developer Certified Expert Oracle 1Z0-897 Java Platform Enterprise Edition 6 Web Services Developer Certified Expert Download Full Version : http://killexams.com/pass4sure/exam-detail/1z0-897 QUESTION: 113 Which three statements

More information

extensible Markup Language

extensible Markup Language extensible Markup Language XML is rapidly becoming a widespread method of creating, controlling and managing data on the Web. XML Orientation XML is a method for putting structured data in a text file.

More information

What do Compilers Produce?

What do Compilers Produce? What do Compilers Produce? Pure Machine Code Compilers may generate code for a particular machine, not assuming any operating system or library routines. This is pure code because it includes nothing beyond

More information