UbiquitousMetadata活用-3

Size: px
Start display at page:

Download "UbiquitousMetadata活用-3"

Transcription

1 XML XML XML-DB WG NTT () 2XML Week 3/4 XQuery SQL SQL SQL

2 XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML

3 XQuery XML XML XPath XPath <students> <student name=" "> <teacher> </teacher> </student> <student name=" "> <teacher> </teacher> </student> <students> "] <student name=" "> <teacher> </teacher> </student> XQuery XML XML XPath <students> <student name=" "> <teacher> </teacher> </student> <student name=" "> <teacher> </teacher> </student> <students> <teacher name=" "> <student> </student> <student> </student> </teacher> XML

4 XQuery XML XML XPath XSLT XSLT XPath XML XSLT XQuery XML XML XPath XSLT XPathXSLT XML!! XQuery XQuery!!

5 XML XML XML XML XML XML XML XML SQL XML SQL

6 XML XML XML XML XML SQL XQuery XML XML XML (Join)

7 XML XML XML XML XML XML XML XQuery unordered () unordered XQuery

8 XSLT XPointer XUL excelon OODBQuery XSQL Oracle RDBQuery XML Query XPath XQL98 XML-QL SQL XML XQLXSLT XPath XML XQL99 QUILT OQL XQuery XML-QLSQL XQuery QUILT W3C XQLXML-QL QUILT XML XQuery W3C Working Draft ( XML Query Requirements (5/2/2003) XML Query Use Cases (5/2/2003) :11/15/ XQuery1.0 and XPath2.0 Data Model (LAST CALL) (5/2/2003) XSLT 2.0 and XQuery 1.0 Serialization (5/2/2003) XQuery1.0 and XPath2.0 Formal Semantics (5/2/2003) XQuery1.0: An XML Query Language (5/2/2003) XML Syntax for XQuery1.0 (XQueryX) (6/7/2001) XQuery1.0 and XPath2.0 Functions and Operators (LAST CALL)(5/2/2003) XPath Requirements Version2.0 (2/14/2001) XML Path Language (XPath)2.0 (5/2/2003) :8/16/ XML Query and XPath Full-Text Requirements (5/2/2003) XML Query and XPath Full-Text Use Cases (2/14/2003) Document WG Document WG

9 XQuery Expression XQuery 2003/05/03 Working Draft Path FLWOR Path $QName $b $val FLWOR typeswitch Path XML Path Language (XPath)2.0 /doc/chapter[="introduction"]

10 XQuery XQuery1.0 and XPath2.0 Functions and Operators op:numeric-add fn:round fn:concat fn:contains fn:replace fn:local-name fn:deep-equal fn:empty fn:insert-before fn:sum fn:doc XML Direct Element Constructor XML curly braces { } < isbn= isbn > { $b/ } </> Computed Constructor element attribute document text element { "Harold and the Purple Crayon" } { attribute isbn { "isbn " } }

11 FLWOR 1 F L W O R FOR LET WHERE ORDER BY RETURN flower XML JOINXML FLWOR FLWOR FLWOR 2 FOR for in (, in )* Cartesian tuple stream iteration LET let := (, in )* tuple stream FOR FOR FOR

12 FLWOR 3 WHERE where FOR LET tuple stream true false ORDER BY order by tuple stream collationempty FLWOR 4 RETURN return FLWOR tuple stream

13 XML Query Use Cases 9 ( XMP ) ( TREE ) ( SEQ ) ( R ) ("SGML") Standard Generalized Markup Language ( STRING ) ( NS ) ( PARTS ) ("STRONG") XML Query Use Cases Use Case Addison-Wesley (Use Case XMP Q1) Use Case 2 Bicycle itemno description bid Use Cases R Q2

14 Use Case Addison-Wesley (Use Case XMP Q1) XML bib.xml <bib> < ="1994"> <>TCP/IP Illustrated</> <> <>Stevens</> <>W.</> </> <>Addison-Wesley</> <> 65.95</> </> XML Query Use Cases < ="2000"> <>Data on the Web</> <> <>Abiteboul</> <>Serge</> </> <> <>Buneman</> <>Peter</> </> <> <>Suciu</> <>Dan</> </> <>Morgan Kaufmann Publishers</> <>39.95</> </> </bib>

15 bib.xml bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan XQuery Addison-Wesley (Use Case XMP Q1) XQuery

16 XQuery 1 1 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan XQuery 1 2 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan $b =

17 XQuery 1 3 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan WHERE $b = XQuery 1 4 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan $b = < = 1994 > <>TCP/IP Illustrated</> </> return

18 XQuery 1 5 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan $b = XQuery 1 6 bib 1994 TCP/IP Illustrated Stevens W. Addison -Wesley Data on the Web Abiteboul Peter Morgan Kaufmann Publishers Suciu Serge Buneman Dan $b = WHERE

19 XQuery 1 7 bib XQuery <bib> < = 1994 > <>TCP/IP Illustrated</> </> </bib> 1994 TCP/IP Illustrated Addison -Wesley Data on the Web Morgan Kaufmann Publishers Stevens W. Abiteboul Serge Buneman Peter Suciu Dan Use Case 2 Bicycle itemno description bid Use Cases R Q2

20 U01 Broken Bicycle U04 Racing Bicycle U03 Helicopter U03 Tennis Racket U01 Tricycle Old Bicycle Motorcycle U01 Red Bicycle RESERVE _PRICE END_DATE START_DATE OFFERED _BY DESCRIPTION ITEMNO ITEMS U U U U U U U U U U U BID_DATE BID ITEMNO USERID BIDS XML items.xml items.xml

21 XML bids.xml bids.xml XQuery 2 Bicycle itemno description bid Use Cases R Q2 XQuery

22 XQuery 2 1 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> items bids $i = item_tuple $b = bid_tuple itemno description offered_by start_date end_date reserve_ userid itemno bid bid_date XML JOIN XQuery 2 2 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno = $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> JOIN $i = $b = ITEMNO DESCRIPTION Red Bicycle OFFERED _BY U01 START_DATE END_DATE RESERVE _PRICE 40 USERID U04 ITEMNO BID BID_DATE U

23 XQuery 2 3 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno= $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> $i = $b = ITEMNO DESCRIPTION Red Bicycle OFFERED _BY U01 START_DATE END_DATE RESERVE _PRICE 40 USERID U04 ITEMNO BID BID_DATE U XQuery 2 4 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno= $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> $i = $b = ITEMNO DESCRIPTION Red Bicycle itemno OFFERED _BY U01 item_tuple description high_bid START_DATE END_DATE RESERVE _PRICE 40 USERID U04 U04 ITEMNO BID BID_DATE max( )

24 XQuery 2 5 <result> { for $i in doc("items.xml")//item_tuple let $b := doc("bids.xml")//bid_tuple[itemno= $i/itemno] where contains($i/description, "Bicycle") order by $i/itemno return <item_tuple> { $i/itemno } { $i/description } <high_bid>{ max($b/bid) }</high_bid> </item_tuple> }</result> result item_tuple item_tuple item_tuple item_tuple itemno description high_bid itemno description high_bid itemno description high_bid itemno description high_bid Red Bicycle Old Bicycle Racing Bicycle Broken Bicycle order by XQuery 2 6 <result> <item_tuple> <itemno></itemno> <description>red Bicycle</description> <high_bid>55.0</high_bid> </item_tuple> <item_tuple> <itemno>1003</itemno> <description>old Bicycle</description> <high_bid>20.0</high_bid> </item_tuple> <item_tuple> <itemno>1007</itemno> <description>racing Bicycle</description> <high_bid>225.0</high_bid> </item_tuple> <item_tuple> <itemno>1008</itemno> <description>broken Bicycle</description> <high_bid></high_bid> </item_tuple> </result>

25 SVG XQuery SVG Scalable Vector Graphics W3C XML / rect circle text SVG XQuery SVG SVG <?xml version= 1.0 encoding= UTF-8?> <svgxmlns:svg=' width='100mm' height='100mm' viewbox =' '> <circle cx='20' cy='20' r='15' fill="#ff0000" stroke="#000000" stroke-width="0.3"/> </svg> 20 x SVG RGB #FF y

26 SVG XML-DB (NeoCore) XQueryViewer XML-DB Apache XML Project Batik 1.5 (SVG Library) (Xquery Java Foundation Class (Swing) Java SDK 1.4 SVG SVG Xquery

27 [ ] SVG 1 SVG circle1.svg [ ] SVG 2 SVG circle1.svg <?xml version="1.0" encoding="utf-8" standalone="no"?> <svg xmlns=' ' width='100mm' height='100mm' viewbox=' '> <g> <circle cx='15' cy='15' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='15' cy='65' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='65' cy='65' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='65' cy='15' r='5' fill="#ff0000" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='20' cy='20' r='10' fill="# FF0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='20' cy='60' r='10' fill="# FF0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='60' cy='60' r='10' fill="# FF0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='60' cy='20' r='10' fill="# FF0033" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='25' cy='25' r='15' fill="# FF0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='25' cy='55' r='15' fill="# FF0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='55' cy='55' r='15' fill="# FF0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='55' cy='25' r='15' fill="# FF0066" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='30' cy='30' r='20' fill="# FF0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='30' cy='50' r='20' fill="# FF0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='50' cy='50' r='20' fill="# FF0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='50' cy='30' r='20' fill="# FF0099" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='35' cy='35' r='25' fill="# FF00CC" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='35' cy='45' r='25' fill="# FF00CC" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='45' cy='45' r='25' fill="# FF00CC" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='45' cy='35' r='25' fill="# FF00CC" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> <circle cx='40' cy='40' r='30' fill="#ff00ff" fill-opacity="0.2" stroke="#000000" stroke-width="0.3"/> </g> </svg >

28 [ ] SVG 3 20 <svg xmlns=' width='100mm' height='100mm' viewbox=' '> { for $c in document("circle1.svg")/svg//circle where $c/@r < 20 return <g> { $c } </g> }</svg> 20 <svg xmlns=' width='100mm' height='100mm' viewbox=' '> { for $c in document("circle1.svg")/svg//circle where $c/@r > 20 return <g> { $c } </g> }</svg> [ ] SVG

29 [ ] SVG 5 SVG rect1.svg [ ] SVG 6 SVG circle1.svg <?xml version="1.0" encoding="utf-8" standalone="no"?> <svg xmlns=' width='40mm' height='40mm' viewbox=' '> <g> <rectx='0' y='0' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='10' y='0' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='20' y='0' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='30' y='0' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='0' y='10' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='10' y='10' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='20' y='10' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='30' y='10' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='0' y='20' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='10' y='20' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='20' y='20' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='30' y='20' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='0' y='30' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='10' y='30' width='10' height='10' fill="#66ccff" stroke="none"/> <rectx='20' y='30' width='10' height='10' fill="#ff9933" stroke="none"/> <rectx='30' y='30' width='10' height='10' fill="#66ccff" stroke="none"/> </g> </svg>

30 [ ] SVG 7 x 2 <svg xmlns=' width='80mm' height='40mm' viewbox=' '> { for $r in document("rect1.svg")/svg//rect return <g> <rect x={$r/@x *2} y={$ r/@y } width={$r/@width*2} height={$r/@height} fill={$r/@fill} stroke="none"/> </g> }</svg> [ ] SVG 8

31 Demonstration XML DB NeoCore SVG

XQueryってどんなもの?

XQueryってどんなもの? 2 XML Week XML XML XML-DB WG NTT ( ) ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com XQuery SQL SQL SQL XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML XQuery XML XML XPath

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

Level1_ key

Level1_ key HTML5 1 2019 8 1.5 API ( ) 1.5.1 API 1.5.2 API 1.5.3 API 1.5.4 API!2 HTML5 Web HTML5 Web Web HTML5 Web Web Web Web Web HTML5!3 Web HTML5 Web HTML Web Web Web API Web HTML Web Web!4 1 2 HTML/HTML5 HTML5

More information

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0

XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 XML 2-1 XML XML (Extensible Markup Language) ISO SGML (Standard Generalized Markup Language) W3C (World Wide Web Consortium) XML 1.0 http://www.w3.org/tr/rec-xml http://www.fxis.co.jp/xmlcafe/tmp/rec-xml.html

More information

122.pdf

122.pdf HironobuUtsugi hironobu-utsugi@exa-corp.co.jp RDB exa review XML HTML W3C(World Wide Web Consortium) XML(Extensible Markup Language) HTML RDB(Relational Database) XML XML DB RDB XML DB XML DB XML * 1 RDB

More information

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A

3. XML, DB, DB (AP). DB, DB, AP. RDB., XMLDB, XML,.,,.,, (XML / ), XML,,., AP. AP AP AP 検索キー //A=1 //A=2 //A=3 返却 XML 全体 XML 全体 XML 全体 XMLDB <root> <A PostgreSQL XML 1 1 1 1 XML,,, /. XML.,,, PostgreSQL.. Implementation of Yet Another XML-type for PostgreSQL Toshifumi Enomoto, 1 Gengo Suzuki, 1 Nobuyuki Kobayashi 1 and Masashi Yamamuro 1 There are various

More information

untitled

untitled SVGMAP Coordinate Reference System SVG1.1 7 12 (Geographic Coordinate Systems) 1 SVG x=262 y=259 =139.6953494 =35.6906626 SVG x=333 y=283 =139.6965939 =35.6902857 SVG Map RDF/XML 2

More information

OOW_I06

OOW_I06 G XDK XML Agenda XDK Overview XML Parser XML Schema Processor (XML SQL Utility XML Class Generator XML Transviewer Beans XSQL Servlet Oracle XML Developer s Kit Oracle XML Devleloper s Kit (XDK XML DB

More information

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL Right Type Conference Paper

TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date URL   Right Type Conference Paper TitleWeb における画像とテキストの融合 Author(s) 安岡, 孝一 Citation (2003): 1-12 Issue Date 2003-03-10 URL http://hdl.handle.net/2433/218368 Right Type Conference Paper Textversion author Kyoto University Web 1 4 7 23 [1]

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

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

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

新しいイテレーション型開発

新しいイテレーション型開発 2 XAML WPF Windows Presentation Foundation 4 / 4 5 Silverlight 5 XAML 6 6 XAML 6 6 7 8 8 9 XAML 9 XAML 12 12 / / 13 / 14 15 XAML 15 Expression Blend 15 Visual Studio 2008 16 XAML 16 Microsoft Expression

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

分散情報システム構成法

分散情報システム構成法 Web Information System Design No.6 Web 文書空間 萩野達也 (hagino@sfc.keio.ac.jp) 1 Web 文書の全体構成要素 Web 文書 XML データ文書 XML アプリケーション HTTP URI 参照操作 Unicode 2 HTML 以外の XML アプリケーション HTML の成功を XML に Extensible Stylesheet

More information

XML基礎

XML基礎 基礎から学ぶ XML 特集 - 基本の基本! XML と文法 - インフォテリア株式会社 XML とは XML 1.0 W3Cの勧告 XML 1.1 XML 文書 HTMLとXML XML(Extensible Markup Language) 1.0 拡張可能なマークアップ言語 1998 年にW3Cから勧告された XML 1.0 ベンダーやプラットフォームから独立したインターネット標準 http://www.w3.org/tr/xml/

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

n n n ( ) n Oracle 16 PostgreSQL 3 MySQL

n n n ( ) n Oracle 16 PostgreSQL 3 MySQL SaaS CAM MACS PostgreSQL ~ ~ 7 PostgreSQL in 2014/02/07 n n n ( ) n Oracle 16 PostgreSQL 3 MySQL n SaaS CAM MACS n AWS n 1993 6 1 1999 4 1 C/S CAM MACS 2007 4 1 SaaS CAM MACS 2007 11 1 SaaS CAM MACS CAM

More information

OSC_isshiki_090710c.ppt

OSC_isshiki_090710c.ppt Web 2009 W3C/Kwio SiteManager ECHONET Keio-contact@w3.org http://www.w3.org 1 2 1990 Web W3C Tim Berners-Lee Web W3C CERN Web 3 W3C W3C=World Wide Consortium 4 W3C Leading the Web to Its Full Potential...

More information

ppt

ppt XML 2004-09-15 ( XML(Extended Markup Language XML XML HTML XML XML (? W3C(World Wide Web Consortium XML 2004-09-15 2 XML XML 1.0 (Extensible Markup Language W3C(World Wide Web Consortium http://www.w3/org/

More information

オントロジ入門

オントロジ入門 Web Web 2004-01-23 XML XML Web WG Web ( ) Web (RDF RDF ) (OWL) ( ) WG ( ) 2004-01-23 2 Web Web Web XML ( ) 2004-01-23 3 Web Web 2 Web HTML(XHTML) ( ) Web ( ) 2 Web 2004-01-23 4 2 Web Web (XHTML) (RDF)

More information

SGML HTML XML Markup Language Web HTML HTML SGML Standard Generalized Markup Language Markup Language DTD Document Type Definition XML SGML Markup Language HTML XML HTML XML JavaScript JAVA CGI HTML Web

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< > < >asakawa@ieee.orgSGML < >SGML SGML Standard Generalized Markup

More information

Encryption Security

Encryption Security 200426 XML Consortium WG XML Signature XML Encryption XKMS2.0 X-KRSS:Register X-KISS:Locate X-KISS:Validate WS-Security XACML WG 2004/02/06 1 XML WG 2004/02/06 2 2001 2002 2003 XKMS XML SAML SSO SAML XML

More information

スライド タイトルなし

スライド タイトルなし XML XML - XML - 2001 Otsuka Corporation, All rights Reserved. XML XML XML XML XML XML XML XML 1998 2 W3C XML = extensible Markup Language SGML ISO8879:1986 1 HTML W3C 1997 Web XML W3C 1998/2 XML XHTML

More information

スライド 1

スライド 1 XML with SQLServer ~let's take fun when you can do it~ Presented by 夏椰 ( 今川美保 ) Agenda( その 1) XML XML XSLT XPath XML Schema XQuery Agenda( その 2) SQLServer における XML XML 型 XML Schema XQuery & XPath チェック制約

More information

Testing XML Performance

Testing XML Performance - DataPower Technology, Inc. XML Web 2003 5 DATAPOWER XML WEB - Copyright 2003DataPower Technology, Inc. All Rights Reserved. DataPower Technology, Inc. DataPower DataPower ( ) DataPower 2003 5 2/17 DATAPOWER

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

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

AlloraマッパーにおけるXpriori・XMSデータベースの使用方法

AlloraマッパーにおけるXpriori・XMSデータベースの使用方法 Allora Xpriori XMS I. XMS Allora (1) Allora-4.2-7 http://www.hitsw.com/index.html (2) Xpriori XMS Database Client http://xpriori.com/developers/download/index.html (3) Xpriori ( Neocore API Java lib) xmsclient.jar

More information

OSF2009発表用抜粋版 A4.ppt

OSF2009発表用抜粋版 A4.ppt Open Source Conference 2009 Web 2009 2 20 Dr. Prof. W3C/Keio Site Manager keio-contact@w3.org http://www.w3.org 1 2 W3C 3 Web 1990 Web Tim Berners-Lee Web W3C CERN Web 4 W3C 5 W3C Leading the Web to Its

More information

untitled

untitled DCMI nagamori@slis.tsukuba.ac.jp DCMI Metadata Schema Registry DCMI Dublin Core Metadata Initiative authoritative source 2004/10/29 2 1 Metadata is the information and documentation which makes data understandable

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

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche

XML Consortium XML XML Consortium Canon, Inc. Yoshikazu Yokomizo XML Consortium HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Sche XML 2006.5.24 HTML CSS1 CSS2 XSL 1.0 XSLT V1.0 XPath 1.0 XML Base XML Schema Part 0 W3C XML Schema Part 1 HTML 4.0 XHTML 1.0 Namespaces XPointer 1.0 XLink 1.0 XML 1.0 XML Schema Part 2 XML I/F DOM Level1

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

Oracle XDK(10.1.2)の技術概要

Oracle XDK(10.1.2)の技術概要 Oracle XDK 10.1.2 2005 1 Oracle XDK 10.1.2... 3... 3 Oracle XML Developer's Kit 10g... 4... 4... 5... 5 XML /XSL... 5 XML... 6 XML Class Generator... 6 XML JavaBeans... 6 XML SQL Utility... 7 XSQL Pages...

More information

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch

CX-Checker CX-Checker (1)XPath (2)DOM (3) 3 XPath CX-Checker. MISRA-C 62%(79/127) SQMlint 76%(13/17) XPath CX-Checker 3. CX-Checker 4., MISRA-C CX- Ch CX-Checker: C 1 1 2 3 4 5 1 CX-Checker CX-Checker XPath DOM 3 CX-Checker MISRA-C CX-Checker: A Customizable Coding Checker for C TOSHINORI OSUKA, 1 TAKASHI KOBAYASHI, 1 JUNICHI MASE, 2 NORITOSHI ATSUMI,

More information

橡SPA2000.PDF

橡SPA2000.PDF XSLT ( ) d-oka@is.s.u-tokyo.ac.jp ( ) hagiya@is.s.u-tokyo.ac.jp XSLT(eXtensible Stylesheet Language Transformations) XML XML XSLT XSLT XML XSLT XML XSLT XML XML XPath XML XSLT XPath XML XSLT,XPath 1 XSLT([6])

More information

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 ... 1... 2... 3... 5... 6... 6... 9... 9 Vector... 10 Struts... 12... 14 cart.jsp 1... 15 cart.jsp 2... 17 JSP...

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

1,.,,,., RDBM, SQL. OSS,, SQL,,.

1,.,,,., RDBM, SQL. OSS,, SQL,,. 1,.,,,., RDBM, SQL. OSS,, SQL,,. 3 10 10 OSS RDBMS SQL 11 10.1 OSS RDBMS............................ 11 10.1.1 PostgreSQL................................. 11 10.1.2 MySQL...................................

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

XML Consortium & XML Consortium 1 XML Consortium XML Consortium 2

XML Consortium & XML Consortium 1 XML Consortium XML Consortium 2 & 1 2 TCO DB2 DB2 UDB DB DB V8.2 V8.2 DB2 DB2 UDB V8.1 V8.1 DB2 9 3 CLOB XML XML DB2 9 purexml XML XML DOC XML DOC XML DOC XML DOC VARCHAR/CLOB XML ( ) 4 XML & XML ( & ) DB2 XML SQL/XML DB2 DB2 : DB2 /

More information

HTML文書の作成

HTML文書の作成 99 C HTML 1 1 2 HTML 1 3 2 4 HTML 2 4.1... 2 4.2... 3 4.3... 5 5 HTML 8 5.1... 8 5.2... 10 5.3... 12 6 HTML 13 7 13 1 HTML HTML [1] 2 HTML HTML Hyper-Text Markup Language World Wide Web (WWW)[2] HTML Hyper-Text

More information

XSLT 4-1

XSLT 4-1 XSLT 4-1 XSLT XML XML HTML XSLT 1.0 (W3C ) http://www.w3.org/tr/xslt http://www.zvon.org/xxl/xsltreference/output/ ( ) XML 4-2 XSLT XML

More information

G-XML EWEB-3K-N064

G-XML EWEB-3K-N064 G-XML EWEB-3K-N064 PreSerV for Web G-XML i 1... 1 1.1 G-XML... 1 1.2... 2 1.2.1 PreSerV for Web... 2 1.2.2 G-XML... 2 1.2.3 SVG... 2 2 G-XML... 3 2.1 G-XML... 3 2.2... 4 2.3... 4 3... 6 3.1... 6 3.2...

More information

WS-I Basic Profile 1.0 の概説

WS-I Basic Profile 1.0 の概説 WS-I Basic Profile 1.0 Copyright(C) Hitachi, Ltd. & NEC Corporation & FUJITSU LIMITED (2003), All Rights Reserved. 1 1. Basic Profile 2. Basic Profile 1.0 3. (Conformance) 4. MESSAGE 5. DESCRIPTION 6.

More information

ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2

ValueHolder... 9 Customer.java Oracle TopLink 10g(10.1.3) È Volume3 2 lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume3 Creation Date: Mar 04, 2005 Last Update: Aug 23, 2005 Version 1.0 ...3... 3...4... 4... 6 ValueHolder... 9 Customer.java... 10...14 Oracle TopLink 10g(10.1.3) È Volume3

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

WS-I Basic Profile 1.0 の概説

WS-I Basic Profile 1.0 の概説 WS-I Basic Profile 1.0 Copyright 2003 Hitachi, Ltd.; NEC Corporation; and Fujitsu Limited. All Rights Reserved. 1 1. Basic Profile 2. Basic Profile 1.0 3. (Conformance) 4. MESSAGE 5. DESCRIPTION 6. REGDATA

More information

PostgreSQL の XML 機能解説と将来拡張への提言

PostgreSQL の XML 機能解説と将来拡張への提言 2009 11 21 11 00 11 50 B 1 PostgreSQL "Let's Postgres" 2 PostgreSQL XML URL http://lets.postgresql.jp/documents/technical/tutorial/xml 3 4 Storage Query Language XML Schemas Programming Interface 5 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

tkk0408nari

tkk0408nari SQLStatement Class Sql Database SQL Structured Query Language( ) ISO JIS http://www.techscore.com/tech/sql/02_02.html Database sql Perl Java SQL ( ) create table tu_data ( id integer not null, -- id aid

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

shimizu_thesis03.dvi

shimizu_thesis03.dvi 2003 2 i 1 3 1.1... 3 1.2... 3 1.3... 3 1.4... 4 2 5 2.1... 6 2.2... 6 2.3... 8 2.3.1... 10 2.4... 11 3 17 3.1... 17 3.1.1... 17 3.1.2... 17 3.2... 19 3.2.1... 19 3.2.2... 20 3.3... 20 3.4... 20 4 23 4.1

More information

※サンプルアプリケーションを固めたファイル(orcasample

※サンプルアプリケーションを固めたファイル(orcasample SDK XML... 3... 4 orca... 4 table-name...4 method... 4 functions... 4 function... 5 function-params... 5 function-param... 5... 6... 6... 8... 10... 12... 14 dbs... 18 dbs... 18 dbs... 18... 18... 19...

More information

untitled

untitled 2004 03 06 DEWS2004 in 1. 2. Continuous Query 3. 4. GPS HTML, XML RFID DB DB Web URL TS URL Load Description 7 /echo.cgi 0.41 CGI Prog. RDB TS Load Mem 1 0.38 8688k 6 0.41 7808k TS URL IP 5 /top.html

More information

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0

Oracle XML DB によるスケーラビリティおよびパフォーマンス検証 - MML v.3.0 Oracle XML DB MML v3.0 2004 5 27 1 Memo 1 Agenda XML MML v3.0 2 Oracle XML Oracle XML DB XML API Oracle XML DB W3C XML Schema 1.0 XPath 1.0 XSLT 1.0 Oracle W3C XML Schema Oracle 2 XML Oracle XML Developer

More information

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We MathML TEX 1,a) 1,b) MathML TEX JavaScript MathJax TEX GUI MathML TEX MathJax Prototype of e-learning and Communication Systems to Support Displaying Math Equations with MathML and TEX Nobuo Yamashita

More information

情報システム 第6回講義資料

情報システム 第6回講義資料 情報学科 CS コース情報システム (3 年後期 ) 講義ノート ー第 6 回ー XSLT, Xlink/Xpointer, インデックス 田中克己 角谷和俊 ( 参考図書 ) S.Abiteboul, P. Buneman, and D. Suciu, Data on the Web From Relations to Semistructured Data and XML, Morgan Kaufmann

More information

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] ( ) [2] RDF RSS 6

Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122, , [1] (   ) [2] RDF RSS 6 Web Web NEC Web (RDF) RDF RSS FOAF RDF Web RDF RDF google rdf filetype:rdf rdf Web 122,000 2003 11 5,440 2003 5 7 [1] ( http://www.atmarkit.co.jp/ ) [2] RDF RSS 6% 7% 39% RDF RSS 42% RSS (RDF Site Summary)

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

001-002_...j.f......_..

001-002_...j.f......_.. 1 2 1 Chapter of Export 1 10 2 12 3 14 4 16 5 18 6 20 7 22 8 24 9 26 10 28 11 30 12 32 13 34 14 36 15 38 16 40 17 42 18 44 19 46 3 20 48 21 50 22 52 23 54 24 56 25 58 26 60 27 62 28 64 29 66 30 68 Chapter

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

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç..

TopLink å SampleClient.java... 5 Ò readallsample() querysample() cachesample() Ç.. lê~åäé= qçéiáåâ= NMÖENMKNKPF Volume2 Creation Date: Mar 04, 2005 Last Update: Aug 22, 2005 Version 1.0 ...3... 3 TopLink å...4 1... 4... 4 SampleClient.java... 5 Ò... 8... 9... 10 readallsample()... 11

More information

"-./0%. "-%!"#$#% $%&'(%)*+,%.!"#+$,$% &'()*% $%&'-(.(/%+,% $%&'0%12*+,'% 1 RMX.. grade gradetype= integer grade[

-./0%. -%!#$#% $%&'(%)*+,%.!#+$,$% &'()*% $%&'-(.(/%+,% $%&'0%12*+,'% 1 RMX.. grade gradetype= integer grade[ DEIM Forum 2014 C8-5 RMX 223 8522 3 14 1 E-mail: {yohei,kita}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp RMX,,, RMX., RMX, RMX,., RMX,., RMX,.,,., RMX 1. RMX (Rule-based e-mail exchange System).,,., RMX,

More information

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4

3 3.1 SSedit ua012345% ssedit SuperSQL config.ssql log.txt( logs.txt) SSedit SSedit 3.2 ssql Putty SSedit ua012345% ssql HTML /public html/ssql.ssql 4 SuperSQL SuperSQL 2016 12 13 1 SuperSQL ITC 2 SuperSQL 2.1 public html/ssql 2.2 SSedit SSedit (3.1 ) postgresql (ua123456 ) 131.113.101.124 /public html/ssql SuperSQL HTML /public html/ssql http://user.keio.ac.jp/

More information

\\afs001-0m0005\project02\A32\M

\\afs001-0m0005\project02\A32\M Technical Information 2004.09 2009.04 Store Request Query Request Retrieve Request DICOM Client Application Remote SCP Remote Query/Retrieve SCP Image Stored * DICOM Server Application Remote SCU Print

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

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI

WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI 7 XML Week Web WebOS WebShell WebOS WebOS GUI WebOS WebOS 2 WebOS aplat WebOS WebOS 3 XML Yahoo!Pipes Popfry UNIX grep awk XML GUI WebOS GUI GUI 4 CUI CUI JavaScript I/O CommandClass WebShell webshell

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

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Web 2003, 2004 All rights reserved. 2 Agenda 3 4/12 am11:10 A B Z 4/12 am11:00 4/12 5 4/12 am11:05 UDDI XX 4/12 5 A 4/12 am11:30 B xx PDA 4 WS XML WS 16 WS WS2 Web Web WS UDDI WS1 WS4 Web Web Web WS3 Web

More information

Oracle Lite Tutorial

Oracle Lite Tutorial GrapeCity -.NET with GrapeCity - FlexGrid Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Document Control Internal Use Only Author Hiroshi Ota Change Logs Date Author Version Change

More information

IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML

IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML SOA XML Week SOA IT IT IT / KPI IT WF(XOML),BPEL WSDL XSD IT XSD WSDL BPEL XOML XML Web Web WCF Web WCF WindowsCommunityFoundation NET Framework 3.0 Web WCF ABC WCF Address WHERE Binding HOW Contract WHAT

More information

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H Vol.56 No.3 1039 1048 (Mar. 2015) Web 1,a) 1,b) 2014 6 30, 2014 10 8 HTML5 Web HTML5 HTML Canvas SVG HTML Canvas SVG Web Viewport Library Viewport Library HTML SVG Viewport Library Viewport Library AssureNote

More information

XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2-

XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2- XML XML XML XML XML XML 2000 12 XSL-FO XML XSL Formatter XSL XSL-FO XML XSL Formatter XML 1. XSL Formatter 2. D XML /XML 3. S XSL 4. O F 5. -2- XSL XML / XML / 1. / XML 2. / XSL 3. XSL XML XSL XSL-FO 4.

More information

csj-report.pdf

csj-report.pdf 527 9 CSJ CSJ CSJ 1 8 XML CSJ XML Browser (MonoForC) CSJ 1.7 CSJ CSJ CSJ 9.1 GREP GREP Unix Windows Windows (http://www.vector.co.jp/) Trn Windows Trn > > grep *.trn 528 9 CSJ A01F0132.trn:& A01M0097.trn:&

More information

Microsoft PowerPoint - 05XMLによるデータの表現.pptx

Microsoft PowerPoint - 05XMLによるデータの表現.pptx 九州大学工学府海洋システム工学専攻講義資料担当 : 木村船舶海洋情報学 05. XMLによるデータの表現 XML(Extensible Markup Language) 情報を保管 ラベル付け 構造化 または保護するための コンテナ のようなもの異なるシステムが相互にコミュニケーションするための手段 基盤 1) データは XML 文書 ( テキスト ) で表現される 2) タグによって情報は 要素

More information

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST

XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium XML ( ) REST(GET)API Amazon.co.jp hon.jp REST XML Week Web 2.0 Day (1) SOA2.0 KM2.0? REST API + XSLT Amazon hon. hon.jp API XML Consortium 2006-05-23 XML ( ) REST(GET)API Amazon.co.jp hon.jp REST + XSLT ( ) hon.jp hon.jp + Aamazon.co.jp Exif to RDF(kanzaki.com)

More information

Adobe Media Encoder ユーザーガイド

Adobe Media Encoder ユーザーガイド ADOBE MEDIA ENCODER CS5 & CS5.5 http://help.adobe.com/ja_jp/legalnotices/index.html iii 1............................................................................. 1.............................................................................................................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Biz/Browser 2005 118 Biz/Browser Rich Client Biz/Browser Macromedia Flash MX Curl Surge Runtime Adobe Acrobat B2B B2C OLAP Biz/Designer CRS Chain Reflection Script Flash MX Pro 2004 SWF Action Script Surge

More information

R による統計解析入門

R による統計解析入門 R May 31, 2016 R R R R Studio GUI R Console R Studio PDF URL http://ruby.kyoto-wu.ac.jp/konami/text/r R R Console Windows, Mac GUI Unix R Studio GUI R version 3.2.3 (2015-12-10) -- "Wooden Christmas-Tree"

More information

Parametric Polymorphism

Parametric Polymorphism ML 2 2011/04/19 Parametric Polymorphism Type Polymorphism ? : val hd_int : int list - > int val hd_bool : bool list - > bool val hd_i_x_b : (int * bool) list - > int * bool etc. let hd_int = function (x

More information

PDBj : : 1

PDBj : : 1 PDB (PDBj) http://www.pdbj.org Mar. 3, 2008 PDBj : : 1 PDBj PDB ID / / XML (xpsss) (Sequence-Navigator) (Structure-Navigator) (ASH) (ProMode) (ef-site) (EM-Navigator) New! GUI (Protein Globe) New! (eprots)

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

More information

ビッグデータアナリティクス - 第3回: 分散処理とApache Spark

ビッグデータアナリティクス - 第3回: 分散処理とApache Spark 3 : Apache Spark 2017 10 20 2017 10 20 1 / 32 2011 1.8ZB 2020 35ZB 1ZB = 10 21 = 1,000,000,000,000 GB Word Excel XML CSV JSON text... 2017 10 20 2 / 32 CPU SPECfp Pentium G3420 77.6 8,946 Xeon Gold 6128

More information

DEIM Forum 2013 B5-2 RMX RMX RMX $, RMX Implementation of the E-m

DEIM Forum 2013 B5-2 RMX RMX RMX $, RMX Implementation of the E-m DEIM Forum 2013 B5-2 RMX 223 8522 3 14 1 E-mail: {matt,zonop,obunai}@db.ics.keio.ac.jp, toyama@ics.keio.ac.jp RMX RMX $, RMX Implementation of the E-mail Text Generating Function and Referring to Body

More information

橡sit nakai-ppt

橡sit nakai-ppt GML(Geography Markup Language) nakai@mv.thd.pb.nttdata.co.jp NTT 1 1997 1997 1998 1999 1999 OGC XML Web Mapping SIG GIS Web Galdos Inc. ( ) 1998 2 XML 1.0 XML 1998 12 NTT MDML by NTT Data OGC Simple Features

More information

意外と簡単!?

意外と簡単!? !?Access Oracle Oracle Migration Workbench MS-Access Oracle Creation Date: Oct 01, 2004 Last Update: Mar 08, 2005 Version: 1.1 !? Oracle Database 10g / GUI!? / Standard Edition!? /!?!? Oracle Database

More information

ucR/XML: XML によるucR graph のシリアライズ

ucR/XML: XML によるucR graph のシリアライズ [White Paper] Ubiquitous ID Center Specification DRAFT 2013-01-16 ucr/xml: XML による ucr graph のシリアライズ ucr/xml: Serialization of ucr graph over XML Number: Title: ucr/xml: XML による ucr graph のシリアライズ ucr/xml:

More information

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00-

0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 0 0 --- -0--0-- 00 0 00-0 0 0 0 0 000-00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- 0 00 000 000 ISBN 0 0 0 ISBN 0 0 0 ISBN---.00- ISBN 0 0 0 ISBN 0 0 0 0 00 000 000 ISBN---.00- 0 00 000 000 ISBN

More information

496

496 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 ISBN4-258-17041-0

More information

() () () () ( ) () () () () () () () () () () () () () () () () () () () () () () ( () () () () () () () () () () () () ) () ( ) () () ( ) () () () () () () () () () () () () () () () () () () () ()()

More information

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2

1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 1 2 39 3 14 13 16 17 36 21 30 32 1 1 105 2 4 50 3 ISBN 4 25 2013 1 ISBN 5 128p ISBN978-4-8340-0013-9 ISBN 2 39 32p ISBN978-4-251-00517-5 62p ISBN978-4-00-110579-7 1 33p ISBN978-4-477-01141-7 3 32p ISBN978-4-591-01270-3

More information