HETEROGENEOUS DATABASE INTEGRATION FOR WEB APPLICATIONS
|
|
|
- Blaise Park
- 10 years ago
- Views:
Transcription
1 HETEROGENEOUS DATABASE INTEGRATION FOR WEB APPLICATIONS V. Rajeswari, Assistant Professor, Department of Information Technology, Karpagam College of Engineering, Coimbatore 32, Dr. Dharmishtan K. Varughese, Professor, Department of Electronics and Communication Engg, Karpagam College of Engineering, Coimbatore 32, Abstract In the contemporary business and industrial environment, the variety of data used by organizations are increasing rapidly. Also, there is an increasing demand for accessing this data. The size, complexity and variety of databases used for data handling cause serious problems in manipulating this distributed information. Integrating all the information from different databases into one database is a challenging problem. XML has been in use in recent times to handle data in web appliccations. XML (extensible Markup Language) is a very open way of data communication. XML has become the undisputable standard both for data exchange and content management. XML is supported by the giants of the software industry like IBM, Oracle and Microsoft. The XML markup language should be the lingua franca of data interchange; but it s rate of acceptance has been limited by a mismatch between XML and legacy databases. This in turn, has created a need for a mapping tool to integrate the XML and databases. This paper highlights the merging of heterogeneous database resource. This can be achieved by means of conversion of relational mode to XML schema and vice versa and by adding the semantic constraints to the XML Schema. The developments that the industry has seen in recent times in this field is referred to as the basis. Keywords : XQuery, XML, Schema, XSLT, Heterogeneous databases. I. INTRODUCTION The most important cause of heterogeneous database is transformation and sharing of data. By using the metadata of participate sites [1], a framework is proposed for integrating heterogeneous database through XML technologies. XML is fully compatible with applications like JAVA and it can be combined with any application which is capable of processing XML irrespective of the platform it is being used on. XML is an extremely portable language to the extent that it can be used on large networks with multiple platforms like the internet and it can be used on handhelds or palm-tops or PDAs. XML is an extendable language meaning that new tags can be created or the tags which have already been created can be used. The various semantic conflicts occurring among heterogeneous data cubes, the system architecture and related resolution procedures for all kinds of semantic conflicts are discussed[2]. For local data cubes with different schemas, a global XML Schema is defined to integrate the local cube structures [2] and each local cube is transformed into an XML document conforming to the global XML Schema. These transformed XML documents obtained from local cubes will be manipulated by pre-defined XQuery commands to form a unified XML document, which can be regarded as the global cube. The integrated global cube can be easily stored and manipulated in native XML databases. II. FUNDAMENTALS OF DATABASE MANAGEMENT SYSTEMS Relation schema is defined as a set of elements (attributes) connected by a structure (table) to describe something (an entity) in the relational database [3]. This entity should have a certain meaning associated with these elements, and the semantics specify how to interpret data values stored in the schema. A classification scheme is proposed for various kinds of semantic conflicts, and it is applied to develop a query execution plan which optimizes multi-database queries based on different types of schematic conflicts with the least execution cost. The conflicts are classified as value-to-value conflicts, value-toattribute conflicts, value-to-table conflicts, attribute-to-attribute conflicts, attribute-to-table conflicts, table-to-table conflicts[2]. These types of conflict classifications were further partitioned into two categories such as conflicts of similar schema structures and conflicts of different schema structures. The semantic conflicts in a heterogeneous database system are further classified as schema conflicts and data conflicts[2]. There are two causes for schema conflicts. One is the use of different structures for the same concept, and the other is the use of different specifications for the same structure. Semantic Conflicts 1. Value-to-value conflicts: These conflicts occur when databases use different representations for the same data. This type of conflicts can be further distinguished into the following types: (a) Data representation conflicts: These conflicts occur when semantically related data items are represented in different data types. 227
2 (b)data scaling conflicts: These conflicts occur when semantically related data items are represented in different databases using different units of measure[2]. (c)inconsistent data: These conflicts occur when semantically related attributes for the same entity have different definite data values in different databases. 2. Value-to-Attribute conflicts: These conflicts occur when the same information is expressed as attribute values in one database and as an attribute name in another database. 3. Value-to-Table conflicts: These conflicts occur when the attribute values in one database [5] are expressed as table names in another database. 4.Attribute-to-Attribute conflicts: This occurs when semantically related data items are named differently or semantically unrelated data items are named equivalently[2]. The former case is also called synonyms and the latter case homonyms. 5.Attribute-to-Table conflicts: These conflicts occur if an attribute name of a table in a database is represented as a table name in another database. 6.Table-to-Table conflicts: These conflicts occur when information of a set of semantically equivalent tables[1] are represented in a different number of tables in another databases. When integrating relations with such conflicts into a global relation, null values are usually generated. Such phenomenon is also called missing data. The types of conflict are further classified into the following two categories. a. Conflicts of similar schema structures. This category includes value-to-value conflicts, attribute-to-attribute conflicts, and table-to-table conflicts. b. Conflicts of different schema structures. This category includes value-to-attribute conflicts, value-to-table conflicts, and attribute-to-table conflicts[2]. For tables with conflicts of similar schema structures, an outerjoin operation is usually employed to integrate the tables into a unified one. III. XML AND XQUERY A ) XML Introduction XML is a set of rules for encoding documents electronically. As of 2009, hundreds of XML-based languages have been developed[6], including RSS, Atom, SOAP, and XHTML. XML has become the default file format for most office-productivity tools, including Microsoft Office, OpenOffice.org, AbiWord, and Apple's iwork. XML s design goals emphasize simplicity, generality, and usability over the Internet [5]. It is a textual data format, with strong support via Unicode for the languages of the world. Although XML s design focuses on documents, it is widely used for the representation of arbitrary data structures, for example in web services. There are a variety of programming interfaces[6] which software developers may use to access XML data and several schema systems designed to aid in the definition of XML-based languages B) XML Declaration This is a string that is often found at the very beginning of XML documents[5]. <?xml version="1.0" encoding='utf-8'?> The following XML document uses all the constructs and concepts. <?xml version="1.0" encoding='utf-8'?> <painting> <img src="india.jpg" alt=' Unity in Diversity'/> <caption>this is painted in <date>1511</date> <date>1512</date> </caption> </painting> Figure 1 XML Program There are four elements in this example document. They are painting, img, caption, and date. date is a child of caption, which is a child of painting. img has two attributes, src and alt. C) Well-formedness and error-handling The XML specification defines an XML document as a text which is well-formed, i.e., it satisfies a list of syntax rules provided in the specification. Every start tag must have a matching end tag. Elements may nest but may not overlap. There must be exactly on root element. Attribute value must be quoted. An element may not have two attribute with the same name. Comments and processing instructions may not appear inside the tags. None of the special syntax characters such as "<" and "&" appear except when performing their markup-delineation roles. D) Programming interfaces A variety of APIs[5] for accessing XML have been developed and used, and some have been standardized. Existing APIs for XML processing tend to fall into these categories: Stream-oriented APIs accessible from a programming language, for example SAX and StAX. Tree-traversal APIs accessible from a programming language for example DOM and XOM. XML data binding which provides an automated translation between an XML document and programming-language objects. Declarative transformation languages such as XSLT and XQuery. Stream-oriented facilities require less memory for certain tasks which are based on a linear traversal of an XML document. 228
3 They are faster and simpler than other alternatives. Treetraversal and data-binding APIs require more memory. They are often found more convenient for use by programmers. Because APIs include declarative retrieval of document components via the use of XPath expressions. E) XML on the Web XML began as an effort to bring the full power and structure of SGML to the Web in a form that was simple enough for nonexperts to use. Like most great inventions, XML [4] turned out to have uses far beyond what its creators originally envisioned. XML is still a very attractive language in which to write and serve web pages. Since XML documents must be wellformed and parsers must reject malformed documents, XML pages are less likely to have annoying cross-browser incompatibilities. Since XML documents are highly structured, they're much easier for robots to parse. Since XML element and attribute names reflect the nature of the content they hold, search-engine robots can more easily determine the true meaning of a page. XML on the Web comes in three flavors[7]. The first is XHTML, an XMLized variant of HTML 4.0 that tightens up HTML to match XML's syntax. For instance, XHTML requires that all start-tags correspond to a matching end-tag and that all attribute values be quoted. XHTML also adds a few bits of syntax to HTML, such as the XML declaration and emptyelement tags that end with />. Most of XHTML can be displayed quite well in legacy browsers, with a few notable exceptions. The second flavor of XML on the Web is direct display of XML documents that use arbitrary vocabularies in web browsers. Generally, the formatting of the document is supplied either by a CSS stylesheet or by an XSLT stylesheet that transforms the document into HTML.This flavor requires an XML-aware browser and is not supported by older web browsers such as Netscape 4.0. A third option is to mix raw XML vocabularies, such as MathML and SVG, with XHTML using Modular XHTML. Modular XHTML lets you embed RDF cataloging information, MathML equations, SVG pictures, and more inside your XHTML documents. Namespaces sort out which elements belong to which applications. F) XQUERY XQuery is a query and functional programming language that is designed to query collections of XML data.xquery 1.0 [7] was developed by the XML Query working group of the W3C. The work was closely coordinated with the development of XSLT 2.0 by the XSL Working Group, the two groups shared responsibility for XPath 2.0, which is a subset of XQuery 1.0. XQuery 1.0 became a W3C Recommendation on January 23, The mission of the XML Query[7] project is to provide flexible query facilities to extract data from real and virtual documents on the World Wide Web. Therefore it finally provides the interaction between the Web world and the database world. Ultimately collections of XML files will be accessed like databases. G ) Features XQuery provides the means to extract and manipulate data from XML documents or any data source that can be viewed as XML, such as relational databases or office documents. XQuery uses XPath expression syntax to address specific parts of an XML document. It supplements this with a SQL-like "FLWOR[7] expression" for performing joins. A FLWOR expression is constructed from the five clauses after which it is named: FOR, LET, WHERE, ORDER BY, RETURN. The language also provides syntax allowing new XML documents to be constructed. Where the element and attribute names are known in advance, an XML-like syntax can be used in other cases, expressions referred to as dynamic node constructors are available. All these constructs are defined as expressions within the language, and can be arbitrarily nested. The language is based on a tree-structured model of the information content of an XML document, containing seven kinds of node such as document nodes, element node, attribute node, text node, comments, processing instructions and namespaces. The type system of the language models all values as sequences. The items in a sequence can either be nodes or atomic values. Atomic values may be integers, strings, booleans, and so on. the full list of types is based on the primitive types defined in XML Schema. Uses of Xquery are as follows : 1. Extracting information from a database [1] for a use in web service. 2. Generating summary reports on [3] data stored in an XML database. 3. Searching textual documents on the Web for relevant information and compiling the results. 4. Selecting and transforming XML data to XHTML to be published on the Web. 5. Pulling data from databases to be used for the application integration. 6. Splitting up an XML document that represents multiple transactions into multiple XML documents. A. H) Examples in XML-QL The simplest XML-QL queries extract data from an XML document. The example XML input is in the document and assume that it contains bibliography entries that conform to the following DTD: <!ELEMENT book (author+, title, publisher)> <!ATTLIST book year CDATA> <!ELEMENT article (author+, title, year?, (shortversion longversion))> <!ATTLIST article type CDATA> <!ELEMENT publisher (name, address)> <!ELEMENT author (firstname?, lastname)> Figure 2 DTD This DTD [6] specifies that a book element contains one or more author elements, one title, and one publisher element and has a year attribute. An article is similar, but its year element is optional, it omits the publisher, and it contains one shortversion or longversion element. An article also contains a type attribute. A publisher contains name and address elements and an author 229
4 contains an optional firstname and one required lastname. The name, address, firstname and lastname are all CDATA, i.e., string values. </> Figure 3.2 Element Patterns - III I) Matching Data Using Patterns. XML-QL uses element patterns[7] to match data in an XML document. This example produces all authors of books whose publisher is Mc Graw-Hill in the XML document Any URI that represents an XML-data source may appear on the right-hand side of IN. WHERE <book> <publisher><name>mc-graw-hill </name></publisher> <title> $t </title> <author> $a </author> </book> IN " CONSTRUCT $a Figure 3 Element Patterns - I Informally, this query matches every <book> element in the XML document that has at least one <title> element one <author> element, and one <publisher> element whose <name> element is equal to Mc Graw-Hill. For each such match, it binds the variables $t and $a to every title and author pair. The variable names are preceded by $ to distinguish them from string literals in the XML document (like Mc-Graw-Hill). For convenience, </element> can be abbreviate by </>. This abbreviation is a relaxation of the XML syntax. Thus the query above can be rewritten as: WHERE <book> <publisher><name> Mc-Graw-Hill </></> <title> $t </> <author> $a </> </> IN " CONSTRUCT $a Figure 3.1 Element Patterns - II J)Constructing XML Data. The query above produces an XML document that contains a list of (<firstname>,<lastname> ) [5] pairs or (<lastname> ) elements from the input document. Often it is useful to construct new XML data in the result. The following query returns both <author> and <title> and groups them in a new <result> element: WHERE <book> <publisher> <name>addison-wesley </> </> <title> $t </> <author> $a </> </> IN " CONSTRUCT <result> <author> $a </> <title> $t </> <bib><book year="2006"> <!-- A good introductory text --> <title> Database System Concepts </title> <author> <lastname>silberschatz Korth Sudharsan </lastname> </author> <publisher> <name>mc-graw-hill</name> </publisher> </book> <book year="2003"> <title>operating Systems </title> <author> <lastname>williamstallings </lastname> </author> <author> <lastname>williams</lastname></author> <publisher> <name>mc-graw-hill </name > </publisher> </book></bib> Figure 4 Bibliographic Data When applied to the example data in Figure 4. the example query would produce the following result: <result> <author><lastname>silberschatzkorth sudharsan</lastname> </author> <title>database System Concepts </title> </result> <result> <author><lastname>williamstallings </lastname></author> <title>operating Systems</title> </result> <result> <author><lastname>williams </lastname></author> <title>foundation for Object/Relational Databases</title> </result> Figure 5 Result of Bibliographic Data IV. SYSTEM STRUCTURE The data warehouse creation [1] module can be regarded as user of the heterogeneous database system. When a user poses a global query on the integrated system, the global site decomposes the global query into sub-queries to request each 230
5 participant to return the data in XML format[3]. This can be easily achieved in contemporary commercial database products (e.g., MS SQL Server 2000, IBM DB2 Extender and Oracle). Besides, the DBA in each site should prepare some XSLT[2] format files, together with some necessary template files, in advance to transform local data into the global schema format. Finally, the transformed data are integrated into a consolidated view with the global query applied on it to return global data to the user. The integration process utilizes the semantic knowledge of all participate local schemas. This should be prepared or discovered before integration. Figure 7 Two Sites with Conflicts of Similar Schema Structures. Figure 6 Heterogenous Database Architectures A) Two Databases With Different Semantic Conflicts There are two databases containing semantically related information about books but in different formats. Sites X and Y contain tables named products and productslist respectively. There are some semantic discrepancies between these sites. They are listed as follows: 1. There are two attribute-to-attribute conflicts: The attributes products.pno and Products.name in Site X are respectively named productlist.pid and productlist.productname in Site Y. 2. There are three value-to-value conflicts: The products.cost stores the list price of every product, but the productlist.cost stores the discounted price (with 40% off). Besides, The productlist.location stores more detailed data than products.location. 3. There is a table-to-table conflict: The products.component is missing in the relation productlist. Besides, the productlist.manufacturing_year is also missing in the relation products. The two tables products and prductlists can be integrated as ProductsData(pno, name, company, cost, dealer, location, components, manufacture_year). When the user wishes to show ProductsData.cost by the original list price, ProductsData.dealer by the full names, and ProductsData.location by the concise names two sets of XSLT and template files are used to transform both tables into ProductData, respectively. Figure 8 and Figure 9 show the XSLT and template files for Site X. For Site Y, the XSLT and template files are shown in Figure 10 and Figure 11 respectively. Finally, both tables can be outer-joined into ProductData as Figure 12 illustrates. <xsl:stylesheet xmlns:xsl=" sform" version="1.0"> <xsl:template match = '*'> <xsl:apply-templates /> <xsl:template match = 'products'> <TR><TD><xsl:value-of select = '@pno' /></TD> <TD><B><xsl:value-of select = '@name' <TD><B><xsl:value-of select = '@company' <TD><B><xsl:value-of select = '@cost' <TD><B><xsl:value-of select = '@dealer' <TD><B><xsl:value-of select = '@location' 231
6 <TD><B><xsl:value-of select = '@components' </TR> <xsl:template match = '/'> <HTML> <HEAD> <STYLE>th { background-color: #CCCCCC }</STYLE> </HEAD> <BODY> <TABLE border='1' style='width:600;'> <TR><TH colspan='7'> ProductsData </TH></TR> <TR><TH>pno</TH><TH>Name</TH><TH>compnay</ TH><TH>cost</TH> <TH>dealer</TH><TH>location</TH><TH>compon ents</th></tr> <xsl:apply-templates select = 'ROOT' /> </TABLE> </BODY> </HTML> </xsl:stylesheet> Figure 8 The XSLT for Site X - Products.xsl <ROOT xmlns:sql="urn:schemas-microsoftcom:xml-sql" sql:xsl="products.xsl"> <sql:query> SELECT pid, name, company, cost, dealer, location, components FROM products FOR XML AUTO </sql:query> </ROOT> Figure 9 The Template file for Site X - Products.xml <xsl:stylesheet xmlns:xsl=" sform" version="1.0"> <xsl:template match = '*'> <xsl:apply-templates /> <xsl:template match = 'productlist'> <TR> <TD><xsl:value-of select = '@bid' /></TD> <TD><B><xsl:value-of select = '@productname' <TD><B><xsl:value-of select = '@company' <TD><B><xsl:value-of select = '@cost' <TD><B><xsl:value-of select = '@dealer' <TD><B><xsl:value-of select = '@location' <TD><B><xsl:value-of select = '@manufactureyear' </TR> <xsl:template match = '/'> <HTML> <HEAD> <STYLE>th { background-color: #CCCCCC }</STYLE> </HEAD> <BODY> <TABLE border='1' style='width:600;'> <TR><TH colspan='7'>productdata</th></tr> <TR><TH>pno</TH><TH>name</TH><TH>company</ TH><TH>cost</TH> <TH>dealer</TH><TH>location</TH><TH>manufa ctureyear</th></tr> <xsl:apply-templates select = 'ROOT' /> </TABLE></BODY></HTML> </xsl:stylesheet> Figure 10 The XSLT for Site Y - productlist.xsl <ROOT xmlns:sql="urn:schemas-microsoftcom:xml-sql" sql:xsl="productlist.xsl"> <sql:query> SELECT pid, productname, dealer, cost/0.4 as cost, rtrim(publisher) + ' Company' as dealer, right(rtrim(location), 2) as location, manuafactureyear FROM productlist FOR XML AUTO </sql:query> </ROOT> Fig 11 The Template file for Site Y. productlist.xml p i d productn ame 1 MotherB oard 2 Micro Controll ers compan y cost dealer loc atio n Heiss 2000 IBM Compan y Joe 2500 Microns Compan y Indi a US A comp onent s manufa ctureyea r Fig 12 Integrated Relation ProductData in the Global site. V. INTEGRATING DATA FROM MULTIPLE XML SOURCES In XML-QL, several sources may be queried simultaneously and produce an integrated view of their data. In this example, we 232
7 produce all pairs of names and social-security numbers by querying the sources and The two sources are joined on the social-security number, which is bound to SSN in both expressions. The result contains only those elements that have both a name element in the first source and an income element in the second source. WHERE <person> <name></> ELEMENT_AS $n <ssn> $ssn </> </> IN " <taxpayer> <ssn> $ssn </> <income></> ELEMENT_AS $i </>IN " CONSTRUCT <result> <ssn> $ssn </>$n $i </> Figure 13 Integrating data from multiple XML sources Alternatively, Skolem functions can be used and a related, but not equivalent, query is written in two fragments: { WHERE <person> <name> </> ELEMENT_AS $n <ssn> $ssn </> </> IN " CONSTRUCT <result ID=SSNID($ssn)> <ssn> $ssn </> $n </>} { WHERE <taxpayer> <ssn> $ssn </> <income> </> ELEMENT_AS $i </> IN " CONSTRUCT <result ID=SSNID($ssn)> ssn> $ssn </> $i </>} Figure 14 Fragmented Queries This query contains, in addition to the previous query, all persons that are not taxpayers, and vice versa. This is the outer join of the entities " and " XML-QL queries are structured into blocks and sub-blocks: the latter are enclosed in braces ({... }), and their semantics is related to that of outer joins in relational databases. In this example, the root block is empty and there are two sub blocks[7]. In the first sub block, all persons' names are produced. Each result has a unique OID given by that person's SSN. In the second sub block, persons and their incomes are produced. Wherever there is a match with a previously generated OID, the <income> will be appended to the object rather than included in a new <person>. Query blocks are powerful. The following query retrieves all titles published in 2007 from the bibliography database, and it also retrieves the publication month for journal articles and the publisher for books. WHERE <$e> <title> $t </><year> 2007 </> </> CONTENT_A $p IN " CONSTRUCT <result ID=ResultID($p)> <title> $t </> </> {WHERE $e = "journal-paper", <month> $m </> IN $p CONSTRUCT <result ID=ResultID($p)> <month> $m </> </> } { WHERE $e = "book", <publisher>$q </> IN $p CONSTRUCT <result ID=ResultID($p)> <publisher>$q </> </> } Figure 15 Output from Bibliography database The outer block runs over all publications in 2007, and produces a result element with their title. The first sub block checks if e is journal-paper and has a month tag. If so, it adds the month element to the same publication. The second sub block checks if e is a book and has a publisher, and adds that publisher element VI. CONCLUSION XML based heterogonous data integration and query has been a hot technology nowadays. Through the Intranet and XML Technology, transforming the information system of enterprise inside, we can realize integrating, sharing and utilizing of the hetrerogenous data source differently and effectively, which has improved the whole efficiency of the Information System.The mapping from heterogenous database integration schemas to XML documents can be prepared according the proposed procedures. REFERENCES [1] Frank S.C. Tseng, Heterogeneous database Integration Using XML. [2] Frank S.C. XML based heterogeneous Database Integration for Data warehouse Creation. [3] Wei-Jung Shiang, Minng-Ying Ho, An Interactive Tool Based on XML Technology for Data Exchange between Heterogeneous ERP systems, Journal of CIIE, Volume 22, No.4, pp (2005). [4] Yanxinwang, Kuiheyang Research and Realization of XML Based Heterogeneous Databases Integration [5] [6] Giovanni Guardalven Integrating XML and Relational Database Technologies Dec., [7] 233
8 Author s Biography Ms. V. Rajeswari is Assistant Professor in the department of Information Technology, Karpagam College of Engineering, Coimbatore. Her areas of interest are J2EE and Database Management Systems. Dr. Dharmishtan K. Varughese is Professor in the department of Electronics and Communication Engg, Karpagam College of Engineering, Coimbatore. His areas of interest are Database Management Systems & Antenna and wave propagation. 234
Semistructured data and XML. Institutt for Informatikk INF3100 09.04.2013 Ahmet Soylu
Semistructured data and XML Institutt for Informatikk 1 Unstructured, Structured and Semistructured data Unstructured data e.g., text documents Structured data: data with a rigid and fixed data format
Last Week. XML (extensible Markup Language) HTML Deficiencies. XML Advantages. Syntax of XML DHTML. Applets. Modifying DOM Event bubbling
XML (extensible Markup Language) Nan Niu ([email protected]) CSC309 -- Fall 2008 DHTML Modifying DOM Event bubbling Applets Last Week 2 HTML Deficiencies Fixed set of tags No standard way to create new
XML Processing and Web Services. Chapter 17
XML Processing and Web Services Chapter 17 Textbook to be published by Pearson Ed 2015 in early Pearson 2014 Fundamentals of http://www.funwebdev.com Web Development Objectives 1 XML Overview 2 XML Processing
II. PREVIOUS RELATED WORK
An extended rule framework for web forms: adding to metadata with custom rules to control appearance Atia M. Albhbah and Mick J. Ridley Abstract This paper proposes the use of rules that involve code to
XML WEB TECHNOLOGIES
XML WEB TECHNOLOGIES Chakib Chraibi, Barry University, [email protected] ABSTRACT The Extensible Markup Language (XML) provides a simple, extendable, well-structured, platform independent and easily
Agents and Web Services
Agents and Web Services ------SENG609.22 Tutorial 1 Dong Liu Abstract: The basics of web services are reviewed in this tutorial. Agents are compared to web services in many aspects, and the impacts of
DTD Tutorial. About the tutorial. Tutorial
About the tutorial Tutorial Simply Easy Learning 2 About the tutorial DTD Tutorial XML Document Type Declaration commonly known as DTD is a way to describe precisely the XML language. DTDs check the validity
XML: extensible Markup Language. Anabel Fraga
XML: extensible Markup Language Anabel Fraga Table of Contents Historic Introduction XML vs. HTML XML Characteristics HTML Document XML Document XML General Rules Well Formed and Valid Documents Elements
An XML Based Data Exchange Model for Power System Studies
ARI The Bulletin of the Istanbul Technical University VOLUME 54, NUMBER 2 Communicated by Sondan Durukanoğlu Feyiz An XML Based Data Exchange Model for Power System Studies Hasan Dağ Department of Electrical
Extensible Markup Language (XML): Essentials for Climatologists
Extensible Markup Language (XML): Essentials for Climatologists Alexander V. Besprozvannykh CCl OPAG 1 Implementation/Coordination Team The purpose of this material is to give basic knowledge about XML
Chapter 3: XML Namespaces
3. XML Namespaces 3-1 Chapter 3: 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],
XSL - Introduction and guided tour
Concepts and Technologies of XML 6.1 XSL - Introduction and guided tour CT-XML 2014/2015 Warning! Authors " João Moura Pires ([email protected]) " With contributions of Carlos Damásio ([email protected])
10CS73:Web Programming
10CS73:Web Programming Question Bank Fundamentals of Web: 1.What is WWW? 2. What are domain names? Explain domain name conversion with diagram 3.What are the difference between web browser and web server
Introduction to XML Applications
EMC White Paper Introduction to XML Applications Umair Nauman Abstract: This document provides an overview of XML Applications. This is not a comprehensive guide to XML Applications and is intended for
T XML in 2 lessons! %! " #$& $ "#& ) ' */,: -.,0+(. ". "'- (. 1
XML in 2 lessons! :.. 1 Lets start This presentation will answer the fundamental questions: What is XML? How do I use XML? How does it work? What can I use it for, anyway? 2 World Wide Web Consortium (W3C)
Firewall Builder Architecture Overview
Firewall Builder Architecture Overview Vadim Zaliva Vadim Kurland Abstract This document gives brief, high level overview of existing Firewall Builder architecture.
Presentation / Interface 1.3
W3C Recommendations Mobile Web Best Practices 1.0 Canonical XML Version 1.1 Cascading Style Sheets, level 2 (CSS2) SPARQL Query Results XML Format SPARQL Protocol for RDF SPARQL Query Language for RDF
XML and Data Management
XML and Data Management XML standards XML DTD, XML Schema DOM, SAX, XPath XSL XQuery,... Databases and Information Systems 1 - WS 2005 / 06 - Prof. Dr. Stefan Böttcher XML / 1 Overview of internet technologies
DataDirect XQuery Technical Overview
DataDirect XQuery Technical Overview Table of Contents 1. Feature Overview... 2 2. Relational Database Support... 3 3. Performance and Scalability for Relational Data... 3 4. XML Input and Output... 4
Lightweight Data Integration using the WebComposition Data Grid Service
Lightweight Data Integration using the WebComposition Data Grid Service Ralph Sommermeier 1, Andreas Heil 2, Martin Gaedke 1 1 Chemnitz University of Technology, Faculty of Computer Science, Distributed
XML. CIS-3152, Spring 2013 Peter C. Chapin
XML CIS-3152, Spring 2013 Peter C. Chapin Markup Languages Plain text documents with special commands PRO Plays well with version control and other program development tools. Easy to manipulate with scripts
CHAPTER 1 INTRODUCTION
CHAPTER 1 INTRODUCTION 1.1 Introduction Nowadays, with the rapid development of the Internet, distance education and e- learning programs are becoming more vital in educational world. E-learning alternatives
Data XML and XQuery A language that can combine and transform data
Data XML and XQuery A language that can combine and transform data John de Longa Solutions Architect DataDirect technologies [email protected] Mobile +44 (0)7710 901501 Data integration through
Quiz! Database Indexes. Index. Quiz! Disc and main memory. Quiz! How costly is this operation (naive solution)?
Database Indexes How costly is this operation (naive solution)? course per weekday hour room TDA356 2 VR Monday 13:15 TDA356 2 VR Thursday 08:00 TDA356 4 HB1 Tuesday 08:00 TDA356 4 HB1 Friday 13:15 TIN090
Overview of DatadiagramML
Overview of DatadiagramML Microsoft Corporation March 2004 Applies to: Microsoft Office Visio 2003 Summary: This document describes the elements in the DatadiagramML Schema that are important to document
T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm
T-110.5140 Network Application Frameworks and XML Web Services and WSDL 15.2.2010 Tancred Lindholm Based on slides by Sasu Tarkoma and Pekka Nikander 1 of 20 Contents Short review of XML & related specs
XML- New meta language in e-business
1 XML- New meta language in e-business XML (extensible Markup Language) has established itself as a new meta language in e-business. No matter what, text, pictures, video- or audio files - with the flexibility
Web Services Technologies
Web Services Technologies XML and SOAP WSDL and UDDI Version 16 1 Web Services Technologies WSTech-2 A collection of XML technology standards that work together to provide Web Services capabilities We
Document Management. Introduction. CAE DS Product data management, document data management systems and concurrent engineering
Document Management Introduction Document Management aims to manage organizational information expressed in form of electronic documents. Documents in this context can be of any format text, pictures or
Rotorcraft Health Management System (RHMS)
AIAC-11 Eleventh Australian International Aerospace Congress Rotorcraft Health Management System (RHMS) Robab Safa-Bakhsh 1, Dmitry Cherkassky 2 1 The Boeing Company, Phantom Works Philadelphia Center
TagSoup: A SAX parser in Java for nasty, ugly HTML. John Cowan ([email protected])
TagSoup: A SAX parser in Java for nasty, ugly HTML John Cowan ([email protected]) Copyright This presentation is: Copyright 2004 John Cowan Licensed under the GNU General Public License ABSOLUTELY WITHOUT
CST6445: Web Services Development with Java and XML Lesson 1 Introduction To Web Services 1995 2008 Skilltop Technology Limited. All rights reserved.
CST6445: Web Services Development with Java and XML Lesson 1 Introduction To Web Services 1995 2008 Skilltop Technology Limited. All rights reserved. Opening Night Course Overview Perspective Business
Using Database Metadata and its Semantics to Generate Automatic and Dynamic Web Entry Forms
Using Database Metadata and its Semantics to Generate Automatic and Dynamic Web Entry Forms Mohammed M. Elsheh and Mick J. Ridley Abstract Automatic and dynamic generation of Web applications is the future
WWW. World Wide Web Aka The Internet. dr. C. P. J. Koymans. Informatics Institute Universiteit van Amsterdam. November 30, 2007
WWW World Wide Web Aka The Internet dr. C. P. J. Koymans Informatics Institute Universiteit van Amsterdam November 30, 2007 dr. C. P. J. Koymans (UvA) WWW November 30, 2007 1 / 36 WWW history (1) 1968
Introduction to XML. Data Integration. Structure in Data Representation. Yanlei Diao UMass Amherst Nov 15, 2007
Introduction to XML Yanlei Diao UMass Amherst Nov 15, 2007 Slides Courtesy of Ramakrishnan & Gehrke, Dan Suciu, Zack Ives and Gerome Miklau. 1 Structure in Data Representation Relational data is highly
Extending the Linked Data API with RDFa
Extending the Linked Data API with RDFa Steve Battle 1, James Leigh 2, David Wood 2 1 Gloze Ltd, UK [email protected] 2 3 Round Stones, USA James, [email protected] Linked data is about connecting
000-575. IBM Tivoli Federated Identity Manager V6.2.2 Implementation. Version: Demo. Page <<1/10>>
000-575 IBM Tivoli Federated Identity Manager V6.2.2 Implementation Version: Demo Page 1.What is the default file name of the IBM Tivoli Directory Integrator log? A. tdi.log B. ibmdi.log C. ibmdisrv.log
Developing XML Solutions with JavaServer Pages Technology
Developing XML Solutions with JavaServer Pages Technology XML (extensible Markup Language) is a set of syntax rules and guidelines for defining text-based markup languages. XML languages have a number
Get Success in Passing Your Certification Exam at first attempt!
Get Success in Passing Your Certification Exam at first attempt! Exam : C2150-575 Title : IBM Tivoli Federated Identity Manager V6.2.2 Implementation Version : Demo 1.What is the default file name of the
Lesson 4 Web Service Interface Definition (Part I)
Lesson 4 Web Service Interface Definition (Part I) Service Oriented Architectures Module 1 - Basic technologies Unit 3 WSDL Ernesto Damiani Università di Milano Interface Definition Languages (1) IDLs
Web Development. Owen Sacco. ICS2205/ICS2230 Web Intelligence
Web Development Owen Sacco ICS2205/ICS2230 Web Intelligence Introduction Client-Side scripting involves using programming technologies to build web pages and applications that are run on the client (i.e.
Discovering SQL. Wiley Publishing, Inc. A HANDS-ON GUIDE FOR BEGINNERS. Alex Kriegel WILEY
Discovering SQL A HANDS-ON GUIDE FOR BEGINNERS Alex Kriegel WILEY Wiley Publishing, Inc. INTRODUCTION xxv CHAPTER 1: DROWNING IN DATA, DYING OF THIRST FOR KNOWLEDGE 1 Data Deluge and Informational Overload
2. Distributed Handwriting Recognition. Abstract. 1. Introduction
XPEN: An XML Based Format for Distributed Online Handwriting Recognition A.P.Lenaghan, R.R.Malyan, School of Computing and Information Systems, Kingston University, UK {a.lenaghan,r.malyan}@kingston.ac.uk
REDUCING THE COST OF GROUND SYSTEM DEVELOPMENT AND MISSION OPERATIONS USING AUTOMATED XML TECHNOLOGIES. Jesse Wright Jet Propulsion Laboratory,
REDUCING THE COST OF GROUND SYSTEM DEVELOPMENT AND MISSION OPERATIONS USING AUTOMATED XML TECHNOLOGIES Colette Wilklow MS 301-240, Pasadena, CA phone + 1 818 354-4674 fax + 1 818 393-4100 email: [email protected]
Short notes on webpage programming languages
Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of
Introduction to Web Services
Department of Computer Science Imperial College London CERN School of Computing (icsc), 2005 Geneva, Switzerland 1 Fundamental Concepts Architectures & escience example 2 Distributed Computing Technologies
How To Use Xml In A Web Browser (For A Web User)
Anwendersoftware a Advanced Information Management Chapter 3: XML Basics Holger Schwarz Universität Stuttgart Sommersemester 2009 Overview Motivation Fundamentals Document Type Definition (DTD) XML Namespaces
Application of XML Tools for Enterprise-Wide RBAC Implementation Tasks
Application of XML Tools for Enterprise-Wide RBAC Implementation Tasks Ramaswamy Chandramouli National Institute of Standards and Technology Gaithersburg, MD 20899,USA 001-301-975-5013 [email protected]
Data Integration through XML/XSLT. Presenter: Xin Gu
Data Integration through XML/XSLT Presenter: Xin Gu q7.jar op.xsl goalmodel.q7 goalmodel.xml q7.xsl help, hurt GUI +, -, ++, -- goalmodel.op.xml merge.xsl goalmodel.input.xml profile.xml Goal model configurator
Translating between XML and Relational Databases using XML Schema and Automed
Imperial College of Science, Technology and Medicine (University of London) Department of Computing Translating between XML and Relational Databases using XML Schema and Automed Andrew Charles Smith acs203
An Approach to Eliminate Semantic Heterogenity Using Ontologies in Enterprise Data Integeration
Proceedings of Student-Faculty Research Day, CSIS, Pace University, May 3 rd, 2013 An Approach to Eliminate Semantic Heterogenity Using Ontologies in Enterprise Data Integeration Srinivasan Shanmugam and
Structured vs. unstructured data. Semistructured data, XML, DTDs. Motivation for self-describing data
Structured vs. unstructured data 2 Semistructured data, XML, DTDs Introduction to databases CSCC43 Winter 2011 Ryan Johnson Databases are highly structured Well-known data format: relations and tuples
Managing XML Documents Versions and Upgrades with XSLT
Managing XML Documents Versions and Upgrades with XSLT Vadim Zaliva, [email protected] 2001 Abstract This paper describes mechanism for versioning and upgrding XML configuration files used in FWBuilder
How To Create A Table In Sql 2.5.2.2 (Ahem)
Database Systems Unit 5 Database Implementation: SQL Data Definition Language Learning Goals In this unit you will learn how to transfer a logical data model into a physical database, how to extend or
Oracle Database 12c: Introduction to SQL Ed 1.1
Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Introduction to SQL Ed 1.1 Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,
Overview Document Framework Version 1.0 December 12, 2005
Document Framework Version 1.0 December 12, 2005 Document History Date Author Version Description October 5, 2005 Carl Yestrau 1.0 First complete version December 12, 2005 Page A Table of Contents 1.0
A Comparison of Database Query Languages: SQL, SPARQL, CQL, DMX
ISSN: 2393-8528 Contents lists available at www.ijicse.in International Journal of Innovative Computer Science & Engineering Volume 3 Issue 2; March-April-2016; Page No. 09-13 A Comparison of Database
Managing large sound databases using Mpeg7
Max Jacob 1 1 Institut de Recherche et Coordination Acoustique/Musique (IRCAM), place Igor Stravinsky 1, 75003, Paris, France Correspondence should be addressed to Max Jacob ([email protected]) ABSTRACT
XML for RPG Programmers: An Introduction
XML for RPG Programmers: An Introduction OCEAN Technical Conference Catch the Wave Susan M. Gantner susan.gantner @ partner400.com www.partner400.com Your partner in AS/400 and iseries Education Copyright
DEVELOPMENT OF THE INTEGRATING AND SHARING PLATFORM OF SPATIAL WEBSERVICES
DEVELOPMENT OF THE INTEGRATING AND SHARING PLATFORM OF SPATIAL WEBSERVICES Lan Xiaoji 1,2 Lu Guonian 1 Zhang Shuliang 1 Shi Miaomiao 1 Yin Lili 1 1. Jiangsu Provincial Key Lab of GIS Science, Nanjing Normal
Ficha técnica de curso Código: IFCAD320a
Curso de: Objetivos: LDAP Iniciación y aprendizaje de todo el entorno y filosofía al Protocolo de Acceso a Directorios Ligeros. Conocer su estructura de árbol de almacenamiento. Destinado a: Todos los
High Performance XML Data Retrieval
High Performance XML Data Retrieval Mark V. Scardina Jinyu Wang Group Product Manager & XML Evangelist Oracle Corporation Senior Product Manager Oracle Corporation Agenda Why XPath for Data Retrieval?
Chapter 1: Introduction
Chapter 1: Introduction Database System Concepts, 5th Ed. See www.db book.com for conditions on re use Chapter 1: Introduction Purpose of Database Systems View of Data Database Languages Relational Databases
by LindaMay Patterson PartnerWorld for Developers, AS/400 January 2000
Home Products Consulting Industries News About IBM by LindaMay Patterson PartnerWorld for Developers, AS/400 January 2000 Copyright IBM Corporation, 1999. All Rights Reserved. All trademarks or registered
1 File Processing Systems
COMP 378 Database Systems Notes for Chapter 1 of Database System Concepts Introduction A database management system (DBMS) is a collection of data and an integrated set of programs that access that data.
A Workbench for Prototyping XML Data Exchange (extended abstract)
A Workbench for Prototyping XML Data Exchange (extended abstract) Renzo Orsini and Augusto Celentano Università Ca Foscari di Venezia, Dipartimento di Informatica via Torino 155, 30172 Mestre (VE), Italy
Jet Data Manager 2012 User Guide
Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform
Oracle Database: SQL and PL/SQL Fundamentals
Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along
Technologies for a CERIF XML based CRIS
Technologies for a CERIF XML based CRIS Stefan Bärisch GESIS-IZ, Bonn, Germany Abstract The use of XML as a primary storage format as opposed to data exchange raises a number of questions regarding the
Multiple electronic signatures on multiple documents
Multiple electronic signatures on multiple documents Antonio Lioy and Gianluca Ramunno Politecnico di Torino Dip. di Automatica e Informatica Torino (Italy) e-mail: [email protected], [email protected] web
SOA and Virtualization Technologies (ENCS 691K Chapter 2)
SOA and Virtualization Technologies (ENCS 691K Chapter 2) Roch Glitho, PhD Associate Professor and Canada Research Chair My URL - http://users.encs.concordia.ca/~glitho/ The Key Technologies on Which Cloud
Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata
Standard for Information and Image Management Standard Recommended Practice extensible Markup Language (XML) for the Interchange of Document Images and Related Metadata Association for Information and
Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications
Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications White Paper Table of Contents Overview...3 Replication Types Supported...3 Set-up &
Concrete uses of XML in software development and data analysis.
Concrete uses of XML in software development and data analysis. S. Patton LBNL, Berkeley, CA 94720, USA XML is now becoming an industry standard for data description and exchange. Despite this there are
LabVIEW Internet Toolkit User Guide
LabVIEW Internet Toolkit User Guide Version 6.0 Contents The LabVIEW Internet Toolkit provides you with the ability to incorporate Internet capabilities into VIs. You can use LabVIEW to work with XML documents,
By Nabil ADOUI, member of the 4D Technical Support team
XSLT with PHP By Nabil ADOUI, member of the 4D Technical Support team Contents Summary... 3 Introduction... 3 Important elements... 3 The PHP XSL library... 4 The PHP XSL API... 5 XSLTProcessor:: construct...
Oracle Database: SQL and PL/SQL Fundamentals NEW
Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the
Interaction Translation Methods for XML/SNMP Gateway Using XML Technologies
Interaction Translation Methods for XML/SNMP Gateway Using XML Technologies Yoon-Jung Oh, Hong-Taek Ju and James W. Hong {bheart, juht, jwkhong}@postech.ac.kr Distributed Processing & Network Management
Oracle SQL. Course Summary. Duration. Objectives
Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data
How To Retire A Legacy System From Healthcare With A Flatirons Eas Application Retirement Solution
EAS Application Retirement Case Study: Health Insurance Introduction A major health insurance organization contracted with Flatirons Solutions to assist them in retiring a number of aged applications that
A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS
A MEDIATION LAYER FOR HETEROGENEOUS XML SCHEMAS Abdelsalam Almarimi 1, Jaroslav Pokorny 2 Abstract This paper describes an approach for mediation of heterogeneous XML schemas. Such an approach is proposed
Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web
Encoding Library of Congress Subject Headings in SKOS: Authority Control for the Semantic Web Corey A Harper University of Oregon Libraries Tel: +1 541 346 1854 Fax:+1 541 346 3485 [email protected]
Unified XML/relational storage March 2005. The IBM approach to unified XML/relational databases
March 2005 The IBM approach to unified XML/relational databases Page 2 Contents 2 What is native XML storage? 3 What options are available today? 3 Shred 5 CLOB 5 BLOB (pseudo native) 6 True native 7 The
Visualization Method of Trajectory Data Based on GML, KML
Visualization Method of Trajectory Data Based on GML, KML Junhuai Li, Jinqin Wang, Lei Yu, Rui Qi, and Jing Zhang School of Computer Science & Engineering, Xi'an University of Technology, Xi'an 710048,
PHP Oracle Web Development Data Processing, Security, Caching, XML, Web Services and AJAX
PHP Oracle Web Development Data Processing, Security, Caching, XML, Web Services and AJAX Yuli Vasiliev Chapter 8 "XML-Enabled Applications" In this package, you will find: A Biography of the author of
XBRL Processor Interstage XWand and Its Application Programs
XBRL Processor Interstage XWand and Its Application Programs V Toshimitsu Suzuki (Manuscript received December 1, 2003) Interstage XWand is a middleware for Extensible Business Reporting Language (XBRL)
ART 379 Web Design. HTML, XHTML & CSS: Introduction, 1-2
HTML, XHTML & CSS: Introduction, 1-2 History: 90s browsers (netscape & internet explorer) only read their own specific set of html. made designing web pages difficult! (this is why you would see disclaimers
Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph. Client: Brian Krzys
Team Members: Christopher Copper Philip Eittreim Jeremiah Jekich Andrew Reisdorph Client: Brian Krzys June 17, 2014 Introduction Newmont Mining is a resource extraction company with a research and development
