XMLテクノロジを使いやすくする

Size: px
Start display at page:

Download "XMLテクノロジを使いやすくする"

Transcription

1 XML

2 XML XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML SAX XSL XML XML JAXB CLASS GENERATOR XML XML 2

3 XML 5 XML XML XML XML Oracle XDK XML Developer s Kit 10g XML XML XML Extensible Markup Language: B2B Business-to-Business B2C Business-to-Customer EAI Enterprise Application Integration: XML XML Web XML WML PDF SVG Scalar Vector Graphics XML 3

4 XML XML XML XML XML PCDATA CDATA XML XML XSLT XPath Namespaces XQuery XML DOM SAX XML XML XML XML XML Oracle XDK 10g XML XML XML DOM 3.0 SAX XSL XSLT XPATH 2.0 XML XML JAXB Java Architecture for XML Binding SAX XML XML XML XML XML XML Pipeline Processor XML XML 4

5 XML XML XML XML XML XML Oracle XDK 10g DOM Document Object Model SAX Simple API for XML XML DOM XML DOM XML API 1 XML DOM 1: DOM XML DOM XML API Java C C++ JavaScript PL/SQL XDK DOM Java C C++ W3C DOM Level 1 DOM Level 2 DOM XML XML XML Oracle XDK 10g DOM 3.0 Load and Save DOM 3.0 Validation DOM DOM 3.0 Load and Save W3C DOM 1 DOM 2 XML DOM DOM XML DOM XML XML DOM XML 5

6 DOM 3.0 Load and Save DOM DOM XML Oracle XDK 10g XML 2 createlsinput createlsparser LSOutput LSSerializer DOM XDK DOM 3.0 Load and Save DOMParserFilter XML DOM DOM XML Oracle XDK 10g DOM 3.0 Load and Save XML DOM DOM import org.w3c.dom.ls.lsparser; import org.w3c.dom.ls.lsinput; import org.w3c.dom.ls.lsloadevent; import oracle.xml.parser.v2.xmllsparser; import org.w3c.dom.events.event; import org.w3c.dom.events.eventlistener; import oracle.xml.parser.v2.xmldocument; import oracle.xml.parser.v2.xmldomimplementation; public class DOMAsynLoading implements EventListener { static DOMAsynLoading test; boolean parseflag=true; public static void main (String[] args) { test = new DOMAsynLoading(); test.testparse("src/xml/book.xml"); } public void testparse(string input) { short mode; DOMImplementationLS impl = new XMLDOMImplementation(); mode = DOMImplementationLS.MODE_ASYNCHRONOUS; LSParser parser = impl.createlsparser(mode, null); try { ((XMLLSParser)parser).addEventListener("ls-load", (EventListener)test, false); } catch(exception e) { e.printstacktrace(); } LSInput inp = impl.createlsinput(); try { URL url = createurl(input); inp.setsystemid(url.tostring()); System.out.println("Asynchronous DOM parsing..."); parseflag = false; Document doc = parser.parse(inp); // Other Application Code // Neen DOM Document while(!parseflag) { try { System.out.println("Waiting for the DOM Parsing..."); Thread.sleep(10); } catch(exception e) { XML 6

7 } } } catch(exception e) { e.printstacktrace(); } } public void handleevent(event evt) { Document doc = ((LSLoadEvent)evt).getNewDocument(); try { ((XMLDocument)doc).print(System.out); parseflag = true; } catch(exception e) { e.printstacktrace(); } } DOM DOMBuilder.addEventListener() DOMbuilder EventListener DOMImplementationLS.MODE_ASYNCHRONOUS DOM XML DOM XML DOM HandleEvent() DOM 2: DOM 3.0 Load and Save XML 7

8 2 DOM 3.0 Load and Save DOM XML DOM DOM 3.0 Load and Save DOM XML DOM 3.0 Validation XML 3 DOM 3.0 Validation XML DOM XML DOM 3: DOM 3.0 Validation 4 XML book.xsd XML 8

9 4: book.xml XML DOM 3.0 Validation API XML DOM XML <?xml version = '1.0'?> <book instock="yes"> <title>compilers: Principles, Techniques, and Tools</title> <author>alfred V.Aho, Ravi Sethi, Jeffrey D. Ullman</author> <ISBN> </ISBN> <edition>second</edition> <publisher>addison Wesley</publisher> </book> DOM 3.0 Validation Element_Name DOM_Functions XML DOM doc DOM XML 9

10 ?doc getdefinedelements publisher author edition editor book title ISBN <book/>?book getallowedchildren publisher ISBN editor title edition author?book getrequiredattributes instock XML XML?edition getenumeratedvalues First Second Third Fourth Fifth DOM DOM <author/> <book/>?book canremovechild author VAL_FALSE DOM XML?doc validatedocument VAL_TRUE?edition nodevalidity VAL_TRUE DOM 3.0 Validation XML API DOM XML XML 10

11 SAX XML SAX XML startdocument enddocument 5 5: SAX XML DOM XML SAX XML XML XML XML SAX XML SAX SAX 6 SQL XSU SAX 6: XML 11

12 Oracle XDK 10g SAX Java oracle.xml.parser.v2.xmlsaxserializer XML CDATA DTD system-id public-id SAX XSU SAX OracleXMLQuery.getXMLSAX(sample); XML XSU DOM XSL 7 XSL XSLT XML XSLT 7: XSL Oracle XDK 10g Java XSL XSLT 2.0 XPATH 2.0 W3C XSL XML 12

13 XSL XSLT 2.0 XSLT XSLT 2.0 <xsl:for-each-group> <xsl:sort> <xsl:for-each-group> 4 1 group-by group-adjacent group-starting-with group-ending-with current-group() XSLT 1.0 XSL XSL XPath XSL XSL Oracle XDK ora:node-set() XSL XSLT 2.0 <xsl:variable> <xsl:param> <xsl:withparam> XPath <xsl:apply-templates> <xsl:for-each> Key() id() XSLT XML XML 13

14 XSLT Oracle XDK <ora:output> XSL Oracle XDK 10g XSLT 2.0 <xsl:result-document> XSLT CD <CD/> HTML Hypertext Markup Language SVG Scalable Vector Graphics CSS Cascading Style Sheets XSLT 1.0 XSLT 2.0 <xsl:character-map> <xsl:charactermap> <xsl:output-character> Unicode #xe000 #xf8ff #xe001 <% JSP #xe002 %> disable-output-escaping XSLT 2.0 disable-output-escaping XSL XML 14

15 XML Oracle XDK 10g Java XML W3C XML Schema 1.0 XMLParser.SCHEMA_LAX_VALIDATION XMLParser.SCHEMA_STRICT_VALIDATION XML LAX STRICT XML XML XML XML Oracle XDK 10g Java XML XML SAX XML XML XSDValidator.getCurrentMode() LAX STRICT XSDValidator.getElementDeclaration() XSDValidator.getAttributeDeclarations() API XML XSDValidator.getAnnotation() XML 8: XML 9 XML XML XML XML 15

16 9: XML XML XML XDK XML Oracle Streams Advanced Queuing 10g Oracle XML DB 10g XML JAXB CLASS GENERATOR Oracle XDK 10g JAXB Java Architecture of XML Binding 1.0 XML Java XML XML Java JAXB Class Generator XML Java XML 16

17 10: DOM XML JAXB XML XML 10 XML JAXB XML XML XML XML XML XSL XML XML Oracle XDK 10g W3C XML Pipeline Definition Language Version 1.0 XML Oracle XML XML XML XML Oracle XML XML DOM XML SAX XML XML XML XML XSL XML XML 11 XML XML 17

18 11: XML Oracle XML XML XML XML 5 XML XML XML XML XML Oracle XDK 10g XML XML Oracle XDK 10g XML 18

19 XML : Jinyu Wang : Mark Scardina Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A. : : : Copyright 2005, Oracle. All rights reserved. Oracle JD Edwards PeopleSoft Oracle Corporation

untitled

untitled Oracle Enterprise Manager 10g Oracle Application Server 2003 11 Oracle Enterprise Manager 10g Oracle Application Server... 3 Application Server... 4 Oracle Application Server... 6... 6... 7 J2EE... 8...

More information

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である XML ... 2... 2... 2... 3... 4... 4... 5... 6... 6... 6... 7... 8... 8... 9... 9... 12... 12... 14... 15... 15... 15... 15... 15... 16... 16... 17... 17... 18... 19... 20... 21... 22... 28... 29... 30 1

More information

rzamjpdf.ps

rzamjpdf.ps IBM i 7.2 XML Toolkit IBM i 7.2 XML Toolkit 15 IBM i 7.2 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Programming Programming XML Toolkit 1 2014.4 Copyright IBM Corporation 1999, 2013. XML Toolkit.............

More information

Oracle Identity Managementの概要およびアーキテクチャ

Oracle Identity Managementの概要およびアーキテクチャ Oracle Identity Management 2003 12 Oracle Identity Management... 3 ID... 3 ID... 4 ID... 4 Oracle Identity Management... 5 Oracle Identity Management... 6 Oracle Identity Management... 7 ID... 8 Application

More information

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

山梨県ホームページ作成ガイドライン

山梨県ホームページ作成ガイドライン 17 7 ...1...4...4...4...4...5...5 W3C...5...6...6...6...7...8...8...10...10...10... 11...12...12...13...13...13...14...14...14...15...15...16...16...16...16...16...17...18 15 (2003 ) 69.7 81.1 43.6 19.6

More information

AJAXを使用した高い対話性を誇るポートレットの構築

AJAXを使用した高い対話性を誇るポートレットの構築 Oracle Application Server Portal テクニカル ノート AJAX 2006 7 概要 Web Web Web UI Web Web Web Web Ajax Asynchronous JavaScript and XML Ajax Ajax 1 API JSR 168 Web Java JSR 168 JavaScript AJAX: 画面の背後にあるテクノロジ Web

More information

Oracle Secure Enterprise Search 10gを使用したセキュアな検索

Oracle Secure Enterprise Search 10gを使用したセキュアな検索 Oracle Secure Enterprise Search 10g 2006 3 Oracle Secure Enterprise Search 10g... 3... 3... 3... 4 Oracle Internet Directory... 4 Microsoft Active Directory... 5... 5 1... 5 2... 6 3 ACL... 6 4 ACL...

More information

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能

Oracle Enterprise Manager 10g R2 Grid Control: データベース管理の新機能 Oracle Enterprise Manager 10g R2 Grid Control: 2005 8 Oracle Enterprise Manager 10g R2 Grid Control:... 3... 3 GRID CONTROL... 4... 4... 4... 5... 5 GRID CONTROL... 5... 5 SQL /... 6... 7 HANG ANLYSIS...

More information

20050314_02-4.ppt

20050314_02-4.ppt Oracle Database 10g Oracle XML DB 2005 3 14 1 Agenda Oracle XML DB XML SQL Oracle Database 10g Release 2 Copyright Oracle Corporation, 2005 All right reserved. 2 XML Oracle Database 10g Release 2 Oracle

More information

キャラクタ・セットの移行に関するベスト・プラクティス

キャラクタ・セットの移行に関するベスト・プラクティス 2003 9 ... 3 Oracle Database 10g... 3... 3... 4 Unicode... 6 Unicode... 6... 7... 8... 8... 9... 9... 10... 10... 10... 11... 11 US7ASCII... 13... 14... 14 Export/Import... 14 CSALTER... 15 Export Import

More information

意外と簡単!? Oracle Database 11g -バックアップ・リカバリ編-

意外と簡単!? Oracle Database 11g -バックアップ・リカバリ編- Oracle Direct Seminar !?Oracle Database 11g -- Agenda Oracle Direct Concierge SQL Server MySQL PostgreSQL Access Oracle Database Oracle Developer/2000 Web Oracle Database Oracle Database

More information

Lotus Domino XML活用の基礎!

Lotus Domino XML活用の基礎! IBM Software Group Lotus Domino XML 2 Agenda Domino XML Domino XML Lotus Domino Web XML Lotus Domino Web XML XML 3 Domino XML Language (DXL) XML Lotus Domino Lotus Notes/Domino R5 Lotus Notes/Domino 6.x

More information

untitled

untitled IT IT IT IT 1 IT 2 Software as a Service (SaaS 3 ) IT SaaS 4 SaaS SaaS PC SaaS SaaS Web SaaS ID IT SaaS IT 1 2 3 Software as a Service ASP(Application Service Provider) SaaS 4 ASPIC SaaS SaaS SaaS SaaS

More information

_02_3.ppt

_02_3.ppt XML DB Oracle Corporation Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 2 Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 3 RDB-XML RDB XML Oracle Corporation 4 XML RDB [Oracle] Extract ExtractValue

More information

CAC

CAC VOL.24NO.1 61 IMS Transaction 3270 DataBase Transaction OS/370 IMS Traditional Transaction Web Browser Transaction Internet WWW AP IIS APache WebLogic Websphere DataBase Oracle DB2 SQL Server Web Browser

More information

J2EEとMicrosoft.NETの比較

J2EEとMicrosoft.NETの比較 2002 4 ... 3... 4... 4... 4... 5... 5... 8... 8... 8... 9 Web... 10... 11... 11... 11... 11... 12... 13... 13... 13... 14... 14... 15 Web... 15 Oracle... 16 Oracle9i Application Server... 16 Oracle9i Developer

More information

ユニット・テストの概要

ユニット・テストの概要 2004 12 ... 3... 3... 4... 5... 6... 6 JUnit... 6... 7 Apache Cactus... 7 HttpUnit/ServletUnit... 8 utplsql... 8 Clover... 8 Anthill Pro... 9... 10... 10... 10 SQL... 10 Java... 11... 11... 12... 12 setter

More information

新・明解Java入門

新・明解Java入門 537,... 224,... 224,... 32, 35,... 188, 216, 312 -... 38 -... 38 --... 102 --... 103 -=... 111 -classpath... 379 '... 106, 474!... 57, 97!=... 56 "... 14, 476 %... 38 %=... 111 &... 240, 247 &&... 66,

More information

Cosminexus Application Designer操作ガイド

Cosminexus Application Designer操作ガイド Cosminexus Application Designer 3020-3-M91 OS Windows Server 2003 Windows Server 2003 R2 Windows XP Windows Vista P-2443-7E74 ucosminexus Developer Standard 07-50 P-2443-7F74 ucosminexus Developer Professional

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN

More information

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 8 : Web Same Origin Policy : XML :, XML http://www.w3.org/xml/ http://www.w3.org/tr/dom-level-3-core 1 / 31 xml.html: XML xpath-test.html: XPATH valid-test.html: XML (IE ) xslt-test.html: JS XSLT xslt-test.xml:

More information

[ ][ ] HTML [ ] HTML HTML

[ ][ ] HTML [ ] HTML HTML COPYRIGHT 2009 MAGREX, ALL RIGHTS RESERVED. [ ][ ] HTML [ ] HTML HTML [ ][ ] / / / [ ][ ] HTML HTML URL URL [ ][ ] Cellpadding Cellspacing ID ID URL [ ][ ] ID ID URL [ ][ ] ID ID URL [ ][ ] [ ][ ] [ ]

More information

Microsoft Word - J-jdev_dba_db_developers.doc

Microsoft Word - J-jdev_dba_db_developers.doc Oracle JDeveloper 2006 1 : Oracle Oracle JDeveloper 2 Oracle JDeveloper :... 2... 4... 4... 4... 5... 6 SQL... 7... 8... 8 SQL... 10 PL/SQL... 11 PL/SQL... 11 Code Editor PL/SQL... 12 Navigator Structure...

More information

Oracle Database 10gのOracle Data Guard

Oracle Database 10gのOracle Data Guard Oracle Database 10g Oracle Data Guard 2004 Oracle Data Guard... 3... 3... 3 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 4 Oracle Data Guard... 5 Oracle Data Guard... 6 Oracle Data

More information

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV

10/ / /30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20 6. http, CGI Perl 11/27 7. ( ) Perl 12/ 4 8. Windows Winsock 12/11 9. JAV [email protected] [email protected] http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 12 11 p.1/33 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

1. 2 DITA 2 2. 1 2. 1. 1 UModel UModel Altova [1] UModel UModel UML(Unified Modeling Language) Java C# VB.NET UML UModel UML 2. 1. 2 XML XML [7] chksp

1. 2 DITA 2 2. 1 2. 1. 1 UModel UModel Altova [1] UModel UModel UML(Unified Modeling Language) Java C# VB.NET UML UModel UML 2. 1. 2 XML XML [7] chksp 30 (2013 ) DITA DITA(Darwin Information Typing Architecture) In software development processes, several documents are created in period of each development phases. Most of these have different file type

More information

Oracle Application Server 10g Release 3(10.1.3)Oracle HTTP Serverの概要

Oracle Application Server 10g Release 3(10.1.3)Oracle HTTP Serverの概要 Oracle Application Server 10g Release 3 10.1.3 Oracle HTTP Server Oracle 2005 12 Oracle Application Server 10g Oracle HTTP Server... 3 OHS:... 3 Oracle HTTP Server... 4 Apache : HTTP v1.1... 4 Apache 2.0...

More information

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation

(OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft Visual Basic.NET (OnePoint) ( URL Web Copyright 2005 Microsoft Corporation. All rights reserved. Microsoft Windows Visual Basic Visual Studio Microsoft Corporation Microsoft Microsoft

More information

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス

Oracle Database 10g Release 2を使用したデータベース・パフォーマンス Oracle Database 10g Release 2 2005 9 Oracle Database 10g Release 2... 3... 3... 3 Automatic Workload Repository AWR... 3 Automatic Database Diagnostic Monitor ADDM... 4 Automatic SQL Tuning SQL... 4 SQL

More information

ハピタス のコピー.pages

ハピタス のコピー.pages Copyright (C) All Rights Reserved. 10 12,500 () ( ) ()() 1 : 2 : 3 : 2 4 : 5 : Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All Rights Reserved. Copyright (C) All

More information

Copyright 2008 All Rights Reserved 2

Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 1 Copyright 2008 All Rights Reserved 2 Copyright 2008 All Rights Reserved 3 Copyright 2008 All Rights Reserved 4 Copyright 2008 All Rights Reserved 5 Copyright 2008 All

More information

22 9 1... 1 2... 2 3... 3 4... 6 4-1... 6 4-2... 13 4-3... 15 4-4... 17 4-5... 19 5... 23 6... 25 7... 28 7-1... 28 7-2... 29 7-3... 31 8... 32 8-1... 32 8-2... 33 8-3... 34 8-4... 34 1 DTD... 1-1 2 XML...

More information

データ連携ソリューションスイート 「ASTERIA WARP」  ご紹介資料

データ連携ソリューションスイート 「ASTERIA WARP」  ご紹介資料 RIA ASTERIA WARP / ) ) CSV) ) / / ) Web A B ASTERIA DB DB C (Excel ) Mail Excel / 6 A RDB ORACLE B XML DB Cyber Luxeon BI CSV Excel ASTERIA WARP Work-Flow EIP Front-End B2B EDI CRM BI Web OLAP Mail BPM

More information

<Insert Picture Here>

<Insert Picture Here> Copyright Corporation Japan, 2006. All rights reserved. 3 Business Intelligence Enterprise Semantic Model vs. BI BI BAM Insight Driven Actions Copyright Corporation Japan, 2006. All

More information

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2

Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Packインストレーション・ガイド リリース2.2 Oracle Enterprise Manager Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2 2000 11 : J02263-01 Oracle Change Management Pack, Oracle Diagnostics Pack, Oracle Tuning Pack 2.2

More information

Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST +

Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST + Web2.0 REST API + XSLT Amazon hon.jp API XML Consortium 2006-04-11 XML ( ) REST(GET)API hon.jp Amazon.co.jp Google Map Exif to RDF(kanzaki.com) REST +XSLT hon.jp hon.jp + Aamazon.co.jp Exif to RDF(kanzaki.com)

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

スライド 1

スライド 1 1 2466 565 40 / All Right Reserved,Copyrights 3 B to B B to C EC ERP EIAJ / / EDI All Right Reserved,Copyrights 4 All Right Reserved,Copyrights 5 1 All Right Reserved,Copyrights 6 EIAJ QR All Right Reserved,Copyrights

More information

_02-5.ppt

_02-5.ppt CONNECT EVERYTHING. ACHIEVE ANYTHING. Sonic XML Server 2005 3 14 Agenda 2 2005 Sonic Software Corporation Sonic Software Corporation 1998 1999 12 SonicMQ 2002 3 Sonic ESB ESB

More information

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL

TopLink È... 3 TopLink...5 TopLink åø... 6 TopLink å Workbench O/R ~... 8 Workbench À ~... 8 Foundation Library å... 8 TopL lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume1 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3 TopLink 10.1.3 È... 3 TopLink...5 TopLink åø... 6 TopLink å... 7... 8 Workbench O/R ~...

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版  

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

FileMaker 16 ODBC と JDBC ガイド

FileMaker 16 ODBC と JDBC ガイド FileMaker 16 ODBC JDBC 2004-2017 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMakerFileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

More information

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO 2009 2D SGML,XML,HTML 2009 11 11 1 SGML SGML Standard Generalized Markup Language (ISO 8879) (JIS X 4151) < >< >SGML< > < >[email protected] < >SGML SGML Standard Generalized Markup

More information

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

Copyright 2008 NIFTY Corporation All rights reserved. 2

Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 2 Copyright 2008 NIFTY Corporation All rights reserved. 3 Copyright 2008 NIFTY Corporation All rights reserved. 4 Copyright 2008 NIFTY Corporation

More information

橡dbweb2002-sato.PDF

橡dbweb2002-sato.PDF Web Web 1 Web XML DB Web EAI 2 RDF RDF Schema DAML+OIL OWL (Web Ontology Language) 3 Resource Description Framework (RDF) W3C XML http://www.net.intap.or.jp/intap/s-web/

More information