WO2006122886A1 - Methode dynamique de generation de documents xml a partir d'une base de donnees - Google Patents
Methode dynamique de generation de documents xml a partir d'une base de donnees Download PDFInfo
- Publication number
- WO2006122886A1 WO2006122886A1 PCT/EP2006/062102 EP2006062102W WO2006122886A1 WO 2006122886 A1 WO2006122886 A1 WO 2006122886A1 EP 2006062102 W EP2006062102 W EP 2006062102W WO 2006122886 A1 WO2006122886 A1 WO 2006122886A1
- Authority
- WO
- WIPO (PCT)
- Prior art keywords
- templates
- database
- xml
- template
- data
- Prior art date
Links
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/80—Information retrieval; Database structures therefor; File system structures therefor of semi-structured data, e.g. markup language structured data such as SGML, XML or HTML
- G06F16/84—Mapping; Conversion
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F16/00—Information retrieval; Database structures therefor; File system structures therefor
- G06F16/90—Details of database functions independent of the retrieved data types
- G06F16/95—Retrieval from the web
- G06F16/958—Organisation or management of web site content, e.g. publishing, maintaining pages or automatic linking
- G06F16/972—Access to data in other repository systems, e.g. legacy data or dynamic Web page generation
Definitions
- the present invention relates generally to computer-managed databases and relates more particularly to the automatic generation of documents of the type using the XML markup language "eXtensible Markup Language", when these databases are interrogated. of data.
- Databases managed from computers directly, or through a network have been used for a very long time by many companies, administrations and all kinds of commercial or other organizations.
- Databases are entities in which it is possible to store data in a structured way and with as little redundancy as possible.
- the major advantage of using databases is the possibility of being accessed by many users simultaneously.
- DBMS database management system
- the DBMS is a set of software applications to manage databases, that is to say to allow access to data in a simple way, to allow access to information to multiple users and to manipulate the data. data present in the database (insert, delete, modify).
- the databases are most often built according to a so-called relational model that organizes the data in the form of tables.
- the manipulation of the data is done according to the mathematical concept of relation of the set theory, that is to say the relational algebra which consists of a set of formal operations on the relations. Relational operations allow you to create a new relation (table) from elementary operations on other tables (for example the union, the intersection, or the difference).
- a structured query language has also been widely adopted. Known as SQL Structured Query Language, it is both a data definition language and a data manipulation and control language. The data definition is the work of the administrator. Most of those who use the SQL language use only the data manipulation language to select the data of interest. From the point of the user the main command of the data manipulation language is the SELECT command. Based on the relational algebra it allows to perform data selection operations on several relational tables to make them available to a user.
- HTML HyperText Markup Language
- SGML Standard Generalized Markup Language
- the applied principle is the generic marking, using tags, chapters, paragraphs, preface, introduction and other entities of a document. While the simplicity of HTML has largely contributed to its adoption, and was quite satisfactory at the beginning of the development of the Web, a demand for more demanding applications has quickly proved its limits.
- the general object of the invention is to provide an improved method for generating XML documents from a database.
- XML from a dynamic definition of access to data from the database.
- a method for automatically generating at least one XML document including data extracted from a source database is described.
- the method consists of defining a plurality of templates, in the format of the database, which templates include executable instructions. Queries associated with each of the templates are also defined. Queries are used to retrieve data from the source database as recordsets.
- the template instructions are executed to generate at least one XML document that includes the data from the recordsets.
- the instructions include at least one call instruction to any of the other templates.
- XML documents consist of elements, which elements include attributes.
- the method is characterized in that it maintains a notion of current element.
- the method also includes an instruction to create a new element that is assigned to the current element. The new element then becomes the current element.
- the method also includes an instruction to create a new attribute to the current element and an instruction to close the current element which consists of reassigning the current element role to the parent element of the current element.
- the method includes a file definition that builds the name of the XML document, creates a root element that becomes the current element, and specifies which of the templates is the root template. Parameters are used to link the templates when the template call statement is executed or when the file definition is opened and the root template is used.
- Each of the template instructions is applied to each registration of the registration sets.
- the instructions are interpreted by the XML generator.
- the source database is a relational database and the queries are queries that obey the rules of the SQL structured query language. Templates, queries, instructions, file definition, and parameters are contained as tables in at least one relational database and can be included in the source database.
- FIGURE 1 illustrates the overall mode of implementation of the invention.
- FIGURE 2 describes the structure of the definition tables of the XML generator.
- FIGURE 3 describes the process that processes the generation of files based on the contents of the file definition.
- FIGURE 4 describes the step of creating the XML target file.
- FIGURE 5 depicts the processing of a template.
- FIGURE 6 describes the instructions of the templates.
- FIGURE 7 is an example of implementation of the invention.
- FIG. 1 illustrates the overall mode of implementation of the invention which is used for a software application hereinafter called VISTA (100) whose purpose is to make available to distant users information extracted from a source database (140) by automatically formatting them in a form that can be interpreted without difficulty by the browsers of the latter.
- the database will contain, for example, the offers and the state of reservations of international hotel chains. Users are then, in this example, the travel agencies that can access this information from anywhere in the world from a public or private network through the Internet.
- XML is the most appropriate language. Proposed by the World Wide Web Consortium, the World Wide Web Consortium (W3C), it has been widely adopted. Thus VISTA relies on the generation of documents in the form of XML files (110) to display their content and thus make available to users the information sought. For this purpose the application (100) must read the XML files via a parser (called “parser” in English).
- the parser is a standard tool developed and sold by software providers such as the well-known American company "Microsoft Corporation”.
- the analysis of the target files produces, during the execution of the parser, objects (105) constituting the pages viewable by the browser of the user of the application.
- the XML generator (120), responsible for producing the XML files, is based on models or templates ("templates" in the technical literature in English on these subjects). They are stored in the definition tables (130) of the XML generator in the format and in the language of the relational database used.
- the templates are intended to be nested to expand their ability to be reused.
- the templates according to the invention are instruction sets interpretable by the XML generator and reusable in their context.
- the context of a template applies to a set of records ("set of records” or “recordset” in English technical terminology), that is, a partial view of the database. , obtained by means of a specific request sent to the latter.
- the queries conform to the structured SQL query language previously discussed.
- the requests are defined and stored in the database (135) in the form of objects which each give access to a particular set of records.
- Query objects can contain parameters.
- the parameters are then used to modify the query. For example, in a database that would list all books in a library, a query can be defined that searches for books by author and therefore includes an author setting. For a specific search the author parameter can then be replaced by the name of a particular author.
- the corresponding recordset which will be returned by the database, in response to the request, will consist of the list of books of that author that the library has.
- a relational database (140) is well suited to store the product-specific data.
- the use of a well-structured database ensures easy and efficient maintenance of the information it contains and in particular avoids redundancies.
- the database (140) is then the essential source of the data that will be included in the XML files generated for the users of the application (100).
- the method of the invention takes advantage in particular of the use of the structured SQL query language already mentioned.
- the use of templates, in the format of the database, which makes it possible to generate the target XML documents, does not require having to distribute to the users, when they connect with their browser, the software means that would be theirs. otherwise needed to access the source database directly.
- the definition tables, templates and queries according to the invention can be contained in a database separated from the source database (140), as shown schematically in FIG. 1, but could equally well be part of a single database (150) without inconvenience.
- the object of the invention is therefore to produce XML documents (110) from a single source (140), a relational database, managed by software applications that constitute de facto standards and which it there are many variants for example, those bearing the name "Oracle”, "IBM DB2" or "Microsoft Access”, products developed and marketed by their respective firms.
- the management and integrity of the data itself is therefore ensured through the use of a standard product that has been extensively tested and used.
- numerous advantages ensue. In particular, the development time is reduced.
- FIG. 1 describes the structure of the "definition tables" of the XML generator. Each table includes: [040]
- a file definition is required to create the target XML file from File
- the file definition includes the following information:
- Template A template contains executable instructions as defined below (220).
- a template may call another template (225).
- Instructions for executing a template are of several types that (230) are used to:
- Parameters act as links between the recordset (210, 240) of the calling template and that of the called template and a distinction must be drawn between:
- the definition includes a name and a field name of the current record set that will contain the parameter value of the parameter group below.
- Parameter group :
- the file definition (200), which uses parameters (210), contains the definition of the particular query to be applied to the database to retrieve the appropriate recordset.
- the file definition references a template (220) that uses instructions (230). When the instruction is of the type that calls another template (225) parameters must then be passed to the called template (240).
- an XML document will include one or more elements delimited by start and end tags of the form ⁇ xxxElement> and ⁇ / Element>, respectively. Each element can then have one or more attributes each having a name and a value that are specified by the instructions of the template.
- Figure 3 describes the process of generating the files based on the content of the "file definition” described above and part of an "XML generator definition table”.
- Target XML file (360) is described in Figure 4. [047] Creating the target file first involves building (400) a file name.
- Figure 6 more precisely describes the step of processing the instructions.
- the system maintains a notion of current element. It is this element that is the target of each of the instructions described below. If there is no current element, it is the root or the first element of the template that is used.
- the instructions are of several types: creation of an element (600), creation of an attribute (610), closure of an element (620) and call of a template (630).
- creation of an element 600
- creation of an attribute 610
- closure of an element 620
- call of a template 630
- An instruction may therefore have to create an XML element (600) with the name constructed as previously described.
- the new element is then assigned to the current element (605), which becomes the parent of the new child element.
- a value can be inserted in the new element, which value must match the specified field of the "recordset".
- An instruction may have to assign an attribute (610) to an XML element.
- the attribute is created for the current element (615).
- a value can be set to this attribute, which value must correspond to a specific field of the registration set.
- An instruction can close an element (620), which amounts to reassigning the current element role (625) to the parent element.
- an instruction may call a template (630) of the previously specified name
- parameters will be passed from the recordset of the current template to that of the called template.
- Figure 7 illustrates, through a particular example, the method according to the invention for generating an XML target file from a relational database.
- a relational database In this example, as it is almost always the case in a software product development environment that is intended to be marketed worldwide by multinational teams, all the technical terms of the code are defined in English. This, however, can not affect the understanding of the description that follows. Either, when it is necessary, the terms are explicit or they can be without inconvenience considered as a sequence of letters and numbers, without any particular meaning, even if, for obvious mnemonic and practical reasons, we try to give one.
- the creation of an XML file begins with the opening (700) of the "file definition", already described, which takes the form of a table (705) in the database.
- codesList_CAR.xml a first empty element
- codes_list a first empty element
- the template above is then processed (720).
- the first step is to execute the query (722) defined for the template (CarCodesList) on the database to obtain the corresponding recordset (730).
- the instructions of the template (710) are applied, of which there are 5 in this example.
- CodesListltem for which a parameter is defined (715).
- the called template (740) also has a query definition (CodesListltem) which makes it possible to obtain the corresponding set of records (750) in the database after the parameter of the calling template (715) has made it possible to retrieve the field (742) to actually execute this request.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Databases & Information Systems (AREA)
- Data Mining & Analysis (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Document Processing Apparatus (AREA)
Abstract
Description
Claims
Priority Applications (8)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
BRPI0611363-0A BRPI0611363A2 (pt) | 2005-05-09 | 2006-05-05 | método para gerar automaticamente pelo menos um documento xml, sistema, meio legìvel com um computador |
CA2603908A CA2603908C (fr) | 2005-05-09 | 2006-05-05 | Methode dynamique de generation de documents xml a partir d'une base de donnees |
JP2008510552A JP4977128B2 (ja) | 2005-05-09 | 2006-05-05 | データベースからxml文書を動的に生成する方法 |
US11/914,017 US8468446B2 (en) | 2005-05-09 | 2006-05-05 | Dynamic method for generating XML documents from a database |
DE602006003649T DE602006003649D1 (de) | 2005-05-09 | 2006-05-05 | Dynamisches verfahren zur erzeugung von xml-dokumenten aus einer datenbank |
AU2006248984A AU2006248984B2 (en) | 2005-05-09 | 2006-05-05 | Dynamic method for generating XML documents from a database |
EP06755055A EP1880325B1 (fr) | 2005-05-09 | 2006-05-05 | Méthode dynamique de génération de documents xml á partir d'une base de données |
KR1020077028876A KR101331532B1 (ko) | 2005-05-09 | 2006-05-05 | 데이터베이스로부터 xml 문서를 동적으로 생성하는 방법 |
Applications Claiming Priority (4)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
EP05103829A EP1722307A1 (fr) | 2005-05-09 | 2005-05-09 | Méthode dynamique de génération de documents XML à partir d'une base de données |
EP05103829.7 | 2005-05-09 | ||
US67923205P | 2005-05-10 | 2005-05-10 | |
US60/679,232 | 2005-05-10 |
Publications (1)
Publication Number | Publication Date |
---|---|
WO2006122886A1 true WO2006122886A1 (fr) | 2006-11-23 |
Family
ID=34939745
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
PCT/EP2006/062102 WO2006122886A1 (fr) | 2005-05-09 | 2006-05-05 | Methode dynamique de generation de documents xml a partir d'une base de donnees |
Country Status (13)
Country | Link |
---|---|
US (1) | US8468446B2 (fr) |
EP (2) | EP1722307A1 (fr) |
JP (1) | JP4977128B2 (fr) |
KR (1) | KR101331532B1 (fr) |
CN (1) | CN100565521C (fr) |
AT (1) | ATE414303T1 (fr) |
AU (1) | AU2006248984B2 (fr) |
BR (1) | BRPI0611363A2 (fr) |
CA (1) | CA2603908C (fr) |
DE (1) | DE602006003649D1 (fr) |
ES (1) | ES2317546T3 (fr) |
WO (1) | WO2006122886A1 (fr) |
ZA (1) | ZA200709325B (fr) |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7962443B2 (en) | 2007-02-08 | 2011-06-14 | Interactive Documents, Llc | Method and system for replacing data in a structured design template |
Families Citing this family (23)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8321846B2 (en) * | 2008-11-13 | 2012-11-27 | Oracle International Corporation | Executable template |
US20100332192A1 (en) * | 2009-04-27 | 2010-12-30 | The Government Of The United States Of America, As Represented By The Secretary Of The Navy | Method and Tools for Self-Describing Data Processing |
US8615526B2 (en) * | 2010-06-21 | 2013-12-24 | Tata Consultancy Services Limited | Markup language based query and file generation |
CN101866361A (zh) * | 2010-06-30 | 2010-10-20 | 山东中创软件工程股份有限公司 | 一种异构数据集成方法及装置 |
US9846693B2 (en) * | 2010-07-23 | 2017-12-19 | Ibm International Group Bv | Document tracking in heterogeneous application environments |
CN102622219B (zh) * | 2011-01-31 | 2015-06-17 | 富士通株式会社 | 对动态调用服务的执行结果进行渲染的方法、装置及系统 |
US8850306B2 (en) * | 2011-03-28 | 2014-09-30 | Microsoft Corporation | Techniques to create structured document templates using enhanced content controls |
US9128986B2 (en) * | 2011-06-29 | 2015-09-08 | Infosys Limited | Method and system for managing a database having a plurality of tables |
KR101122629B1 (ko) | 2011-11-18 | 2012-03-09 | 김춘기 | 데이터베이스의 데이터를 변환하여 xml 문서를 생성하는 방법 |
KR101416712B1 (ko) * | 2012-07-12 | 2014-07-09 | 김영근 | 정형 및 비정형 데이터를 xml 문서에 구현하는 방법 |
KR101449725B1 (ko) * | 2012-11-12 | 2014-10-16 | 한국과학기술정보연구원 | Pdf 문서 파일을 자동 변환하는 장치 및 방법 |
CN103902634B (zh) * | 2012-12-30 | 2017-09-29 | 航天信息股份有限公司 | 利用Adapter实现View组件与数据库字段自动绑定的方法 |
CN104063468B (zh) * | 2014-06-27 | 2017-11-10 | 北京思特奇信息技术股份有限公司 | 一种数据报表自动生成及提取方法及装置 |
CN104537103B (zh) * | 2015-01-12 | 2018-11-16 | 用友医疗卫生信息系统有限公司 | 数据处理方法和数据处理装置 |
CN104679909B (zh) * | 2015-03-25 | 2018-07-17 | 郑州悉知信息科技股份有限公司 | 一种设置网站tdk的方法及装置 |
US10552425B1 (en) * | 2016-04-28 | 2020-02-04 | Jpmorgan Chase Bank, N.A. | System and method for automated data utilization |
CN110222236B (zh) * | 2016-06-06 | 2021-05-04 | 福建榕基软件股份有限公司 | Xml报文模板的生成及更新方法及其系统 |
CN106202008B (zh) * | 2016-06-28 | 2019-04-05 | 武汉斗鱼网络科技有限公司 | 一种MySQL数据库结构化文档生成方法及装置 |
KR102157218B1 (ko) * | 2018-12-28 | 2020-09-18 | 인천대학교 산학협력단 | 공간 데이터의 의미론적 주석을 위한 데이터 변환 방법 |
CN110569456B (zh) * | 2019-07-26 | 2022-03-08 | 广州视源电子科技股份有限公司 | Web端数据离线缓存方法及装置、电子设备 |
CN113742375A (zh) * | 2020-06-18 | 2021-12-03 | 北京沃东天骏信息技术有限公司 | 一种目标对象搜索方法和装置 |
KR102253751B1 (ko) * | 2020-10-15 | 2021-05-20 | 주식회사 위키랩 | 워드프로세서와 데이터베이스를 연동하여 문서를 생성하는 시스템 및 방법 |
US11755647B2 (en) | 2020-12-03 | 2023-09-12 | International Business Machines Corporation | XML production through database mining and blockchain |
Citations (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20040199524A1 (en) * | 2000-03-17 | 2004-10-07 | Michael Rys | Systems and methods for transforming query results into hierarchical information |
Family Cites Families (24)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US5835712A (en) * | 1996-05-03 | 1998-11-10 | Webmate Technologies, Inc. | Client-server system using embedded hypertext tags for application and database development |
JP2000250841A (ja) * | 1999-03-02 | 2000-09-14 | Hitachi Ltd | ページ生成方法及び装置並びにページ生成プログラムを記録した記憶媒体および電子モールシステム |
JP2001092695A (ja) * | 1999-09-24 | 2001-04-06 | Hitachi Information Systems Ltd | 構造化文書とデータベースのデータ交換処理方法及びそのプログラムを記録した媒体 |
US6826727B1 (en) * | 1999-11-24 | 2004-11-30 | Bitstream Inc. | Apparatus, methods, programming for automatically laying out documents |
US6721727B2 (en) * | 1999-12-02 | 2004-04-13 | International Business Machines Corporation | XML documents stored as column data |
US6963875B2 (en) * | 2000-03-23 | 2005-11-08 | General Atomics | Persistent archives |
US6941510B1 (en) * | 2000-06-06 | 2005-09-06 | Groove Networks, Inc. | Method and apparatus for efficient management of XML documents |
US7076534B1 (en) * | 2000-06-30 | 2006-07-11 | Microsoft Corporation | Server-side scripting that enables creation of customized documents for clients |
US6708186B1 (en) * | 2000-08-14 | 2004-03-16 | Oracle International Corporation | Aggregating and manipulating dictionary metadata in a database system |
US6725231B2 (en) * | 2001-03-27 | 2004-04-20 | Koninklijke Philips Electronics N.V. | DICOM XML DTD/schema generator |
US7131063B2 (en) * | 2001-09-13 | 2006-10-31 | International Business Machines Corporation | Method and system for delivering dynamic information in a network |
US7210097B1 (en) * | 2002-05-22 | 2007-04-24 | Pitney Bowes Inc. | Method for loading large XML documents on demand |
US20040002907A1 (en) * | 2002-06-28 | 2004-01-01 | Tosswill Andrew R. | Template for inputting customized processing features in an electronic bill presentment and payment system |
CA2414053A1 (fr) * | 2002-12-09 | 2004-06-09 | Corel Corporation | Systeme et methode pour manipuler un modele objet document |
US7580960B2 (en) * | 2003-02-21 | 2009-08-25 | Motionpoint Corporation | Synchronization of web site content between languages |
US20040268238A1 (en) * | 2003-06-30 | 2004-12-30 | Peiya Liu | Systems and methods for processing documents using an XML-based process flow description language |
US7496840B2 (en) * | 2003-10-13 | 2009-02-24 | Wolters Kluwer Financial Services, Inc. | Document creation system and method using a template structured according to a schema |
US7458022B2 (en) * | 2003-10-22 | 2008-11-25 | Intel Corporation | Hardware/software partition for high performance structured data transformation |
US7640497B1 (en) * | 2003-12-22 | 2009-12-29 | Apple Inc. | Transforming a hierarchical data structure according to requirements specified in a transformation template |
CN1560763B (zh) * | 2004-02-19 | 2010-05-05 | 北京大学 | 一种可扩展标记语言路径查询翻译为结构查询的方法 |
US7500185B2 (en) * | 2004-04-29 | 2009-03-03 | Koninklijke Philips Electronics N.V. | Framework of validating DICOM structured reporting documents using XSLT technology |
US7721195B2 (en) * | 2004-08-24 | 2010-05-18 | Oracle International Corporation | RTF template and XSL/FO conversion: a new way to create computer reports |
US7966286B2 (en) * | 2005-02-14 | 2011-06-21 | Microsoft Corporation | Hierarchical management of object schema and behavior |
US7949941B2 (en) * | 2005-04-22 | 2011-05-24 | Oracle International Corporation | Optimizing XSLT based on input XML document structure description and translating XSLT into equivalent XQuery expressions |
-
2005
- 2005-05-09 EP EP05103829A patent/EP1722307A1/fr not_active Withdrawn
-
2006
- 2006-05-05 AU AU2006248984A patent/AU2006248984B2/en not_active Ceased
- 2006-05-05 BR BRPI0611363-0A patent/BRPI0611363A2/pt not_active Application Discontinuation
- 2006-05-05 ES ES06755055T patent/ES2317546T3/es active Active
- 2006-05-05 KR KR1020077028876A patent/KR101331532B1/ko active IP Right Grant
- 2006-05-05 CN CNB200680015662XA patent/CN100565521C/zh active Active
- 2006-05-05 DE DE602006003649T patent/DE602006003649D1/de active Active
- 2006-05-05 JP JP2008510552A patent/JP4977128B2/ja active Active
- 2006-05-05 AT AT06755055T patent/ATE414303T1/de not_active IP Right Cessation
- 2006-05-05 CA CA2603908A patent/CA2603908C/fr not_active Expired - Fee Related
- 2006-05-05 US US11/914,017 patent/US8468446B2/en active Active
- 2006-05-05 EP EP06755055A patent/EP1880325B1/fr active Active
- 2006-05-05 WO PCT/EP2006/062102 patent/WO2006122886A1/fr active Application Filing
-
2007
- 2007-10-30 ZA ZA200709325A patent/ZA200709325B/xx unknown
Patent Citations (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20040199524A1 (en) * | 2000-03-17 | 2004-10-07 | Michael Rys | Systems and methods for transforming query results into hierarchical information |
Non-Patent Citations (3)
Title |
---|
CHAHUNEAU F ET AL: "SGML Template Driven Database Extraction: A New Approach to Report Generation", WWW.BALISE.COM, 21 July 1998 (1998-07-21), Internet, XP002124848 * |
INTERNATIONAL BUSINESS MACHINES CORPORATION: "Generating hierarchical XML data from a flat (non-hierarchical) data source", RESEARCH DISCLOSURE, KENNETH MASON PUBLICATIONS, WESTBOURNE, GB, vol. 451, no. 156, November 2001 (2001-11-01), XP007129336, ISSN: 0374-4353 * |
UNKNOWN: "Generating XML data from the database", UNKNOWN, October 2002 (2002-10-01), Internet, XP002295814 * |
Cited By (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US7962443B2 (en) | 2007-02-08 | 2011-06-14 | Interactive Documents, Llc | Method and system for replacing data in a structured design template |
Also Published As
Publication number | Publication date |
---|---|
JP2008541254A (ja) | 2008-11-20 |
ES2317546T3 (es) | 2009-04-16 |
ZA200709325B (en) | 2008-11-26 |
CA2603908A1 (fr) | 2006-11-23 |
ATE414303T1 (de) | 2008-11-15 |
BRPI0611363A2 (pt) | 2010-09-08 |
AU2006248984B2 (en) | 2010-12-23 |
AU2006248984A1 (en) | 2006-11-23 |
KR101331532B1 (ko) | 2013-11-20 |
CN101171582A (zh) | 2008-04-30 |
EP1880325B1 (fr) | 2008-11-12 |
EP1722307A1 (fr) | 2006-11-15 |
US8468446B2 (en) | 2013-06-18 |
KR20080027251A (ko) | 2008-03-26 |
CN100565521C (zh) | 2009-12-02 |
DE602006003649D1 (de) | 2008-12-24 |
CA2603908C (fr) | 2014-03-25 |
JP4977128B2 (ja) | 2012-07-18 |
US20090265608A1 (en) | 2009-10-22 |
EP1880325A1 (fr) | 2008-01-23 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
EP1880325B1 (fr) | Méthode dynamique de génération de documents xml á partir d'une base de données | |
US7725469B2 (en) | System and program products for pruning objects in a service registry and repository | |
US20090055410A1 (en) | Method for pruning objects in a service registry and repository | |
FR2909198A1 (fr) | Procede et disositif de filtrage d'elements d'un document structure a partir d'une expression. | |
FR2906383A1 (fr) | Referentiel semantique de services web et procede utilisant ce referentiel | |
US20090083239A1 (en) | Accessing objects in a service registry and repository using a treat as function | |
FR2887349A1 (fr) | Procede de traitement de donnees compatible avec un formalisme de modelisation d'objets | |
FR2826753A1 (fr) | Procede et dispositif de traitement d'un document informatique dans un systeme informatique | |
EP1285361A1 (fr) | Systeme de publication multi-terminal et procede de mise en oeuvre correspondant | |
EP1828941B1 (fr) | Dispositif de traitement de données à définition formelle | |
FR2912275A1 (fr) | Procede de transmission d'au moins un contenu representatif d'un service, depuis un serveur vers un terminal, dispositif et produit programme d'ordinateur correspondants | |
FR2785412A1 (fr) | Creation dynamique de classes d'objets | |
JP2006127235A (ja) | 構造化文書管理システム、構造化文書管理方法及びプログラム | |
EP2219113B1 (fr) | Procédé d'affichage, dispositif et produit programme d'ordinateur correspondant | |
EP1877898A1 (fr) | Creation d'applications personnalisables | |
WO2016124851A1 (fr) | Procédé de production automatique d'une base de données a partir d'un modèle de données générique et d'une taxinomie | |
FR2911200A1 (fr) | Procede et dispositif de traitement de documents a partir de schemas enrichis et procede et dispositif de decodage correspondants | |
Bécan | Metamodels and feature models: complementary approaches to formalize product comparison matrices | |
FR2925721A1 (fr) | Procede et dispositif de compilation et d'evaluation d'une pluralite d'expressions a evaluer sur un document structure | |
Almeida et al. | Audiovisual Archive with Mpeg-7 Video Description and XML Database. | |
WO2005013145A2 (fr) | Procede permettant a un utilisateur de developper des applications informatiques appliquees a des donnees qualifiees dans un systeme de gestion de donnees (sgd) | |
FR2914758A1 (fr) | Procede et dispositif de modification d'une expression et procede et dispositif d'evaluation d'une expression | |
FR2887348A1 (fr) | Structure de donnees compatible avec un formalisme de modelisation d'objets et procede de traitement de donnees | |
EP2738693A1 (fr) | Procédé d'enregistrement de données hiérarchisées | |
FR2795536A1 (fr) | Procede de traduction, de transfert et de mise a jour d'un objet informatique sur un reseau de communication informatique |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
121 | Ep: the epo has been informed by wipo that ep was designated in this application | ||
WWE | Wipo information: entry into national phase |
Ref document number: 2006755055 Country of ref document: EP |
|
WWE | Wipo information: entry into national phase |
Ref document number: 1600/MUMNP/2007 Country of ref document: IN |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2603908 Country of ref document: CA |
|
WWE | Wipo information: entry into national phase |
Ref document number: 200680015662.X Country of ref document: CN Ref document number: 2008510552 Country of ref document: JP |
|
NENP | Non-entry into the national phase |
Ref country code: DE |
|
WWW | Wipo information: withdrawn in national office |
Ref document number: DE |
|
WWE | Wipo information: entry into national phase |
Ref document number: 2006248984 Country of ref document: AU |
|
NENP | Non-entry into the national phase |
Ref country code: RU |
|
WWW | Wipo information: withdrawn in national office |
Ref document number: RU |
|
WWE | Wipo information: entry into national phase |
Ref document number: 1020077028876 Country of ref document: KR |
|
ENP | Entry into the national phase |
Ref document number: 2006248984 Country of ref document: AU Date of ref document: 20060505 Kind code of ref document: A |
|
WWP | Wipo information: published in national office |
Ref document number: 2006248984 Country of ref document: AU |
|
WWP | Wipo information: published in national office |
Ref document number: 2006755055 Country of ref document: EP |
|
WWE | Wipo information: entry into national phase |
Ref document number: 11914017 Country of ref document: US |
|
ENP | Entry into the national phase |
Ref document number: PI0611363 Country of ref document: BR Kind code of ref document: A2 |