XSLT XSLT xsd XSLT XML xsd XPath <xsl:template ]

Size: px
Start display at page:

Download "XSLT XSLT xsd XSLT XML xsd XPath <xsl:template ]"

Transcription

1 XML Week splat XML XML Web 2005,2006 WS-Security End-to-End XSLT (xsd) XSLT MUST MAY Java class MUST,MAY

2 XSLT XSLT xsd XSLT XML xsd XPath <xsl:template ] XML package Web Web Web XML-DB XSLT XSLT XSLT,XPath DOM

3 class MAY CreditCardInformation CreditCardNumber MUST ExpireDate (MAY1) CardHolderName (MAY2) MUST <CreditCardInformation> <CreditCardAuthority>XYZ</CreditCardAuthority> <CreditCardNumber> </CreditCardNumber> <ExpireDate> </ExpireDate> MAY1 <CardHolderName>Aramoto Michitaka</CardHolderName> </CreditCardInformation> MAY2 <CreditCardInformation> <CreditCardAuthority>XYZ</CreditCardAuthority> <xenc:encrypteddata Type= <xenc:encryptionmethod Algorithm= <xenc:cipherdata> <xenc:ciphervalue>fhrzmys1...</xenc:ciphervalue> </xenc:cipherdata> </xenc:encrypteddata> <ExpireDate> </ExpireDate> <CardHolderName>Aramoto Michitaka</CardHolderName> </BookingInfo>

4 <?xml version="1.0" encoding="utf-8"?> <xs:schema xmlns:xs=" targetnamespace=" xmlns=" elementformdefault="unqualified"> <xs:element name="creditcardinformation"> <xs:complextype> <xs:sequence> <xs:element ref="creditcardauthority" minoccurs="0"/> <xs:element ref="creditcardnumber" minoccurs="0"/> <xs:element ref="expiredate" minoccurs="0"/> <xs:element ref="cardholdername" minoccurs="0"/> </xs:sequence> </xs:complextype> </xs:element> <xs:element name="creditcardauthority" type="xs:string"/> <xs:element name="creditcardnumber" type="xs:string"/> <xs:element name="expiredate" type="xs:gyearmonth"/> <xs:element name="cardholdername" type="xs:string"/> </xs:schema> MUST MAY1 MAY2 xenc <?xml version="1.0" encoding="utf-8"?> <xs:schema xmlns:xs=" xmlns=" targetnamespace=" elementformdefault="unqualified"> <xsl:import xmlns:xsl=" namespace=" schemalocation="xenc-schema.xsd"/> <xs:element name="creditcardinformation"> <xs:complextype> MUST <xs:sequence> <xs:element ref="creditcardauthority" minoccurs="0"/> <xs:element xmlns:xenc=" ref="xenc:encrypteddata" minoccurs="0"/> <xs:choice minoccurs="0"> <xs:element ref="expiredate"/> <xs:element xmlns:xenc=" ref="xenc:encrypteddata"/> </xs:choice> <xs:choice> <xs:element ref="cardholdername" minoccurs="0"/> <xs:element xmlns:xenc=" ref="xenc:encrypteddata" minoccurs="0"/> </xs:choice> </xs:sequence> </xs:complextype> </xs:element> <xs:element name="creditcardauthority" type="xs:string"/> <xs:element name="expiredate" type="xs:gyearmonth"/> <xs:element name="cardholdername" type="xs:string"/> </xs:schema> MAY2 MAY1

5 XSLT (1) <?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl=" xmlns:xs=" xmlns:xenc=" version="1.0"> <xsl:output method="xml" encoding="utf-8" indent="yes" /> <xsl:template match="/"> <xsl:apply-templates/> <xsl:template match="/xs:schema"> <xsl:copy> <!-- schema <xsl:apply-templates <!-- xenc <xsl:element name="xsl:import"> <xsl:attribute name="namespace"> <!-- <xsl:attribute name="schemalocation"> /xenc-schema.xsd <xsl:attribute name="schemalocation">xenc-schema.xsd </xsl:element> <!-- <xsl:apply-templates select="node()"/> </xsl:copy> xenc XSLT (2) <!-- <xsl:template ardnumber']"> <xsl:call-template name="xenc-element-must" /> <!-- CreditCardNumber element <xsl:template /> MUST <!-- <xsl:template ate']"> <xsl:call-template name="xenc-element-may1" /> <!-- <xsl:template dername']"> <xsl:call-template name="xenc-element-may2" /> MAY2 MAY1

6 XSLT (3) MUST <!-- <xs:element ref="xxxxxxxxxx" minoccurs="m" maxoccurs="n"/> <xs:element ref="xenc:encrypteddata" minoccurs="m" maxoccurs="n"/> <xsl:template name="xenc-element-must"> <xs:element ref="xenc:encrypteddata"> <xsl:if <xsl:attribute name="minoccurs"> <xsl:value-of /> <xsl:if <xsl:attribute name="maxoccurs"> <xsl:value-of /> </xs:element> XSLT (4) MAY1 <!-- <xs:element ref="xxxxxxxxxx" minoccurs="m" maxoccurs="n"/> <xs:choice minoccurs="m" maxoccurs="n"> <xs:element ref="xxxxxxxxxx"/> <xs:element ref="xenc:encrypteddata"/> </xs:choice> <xsl:template name="xenc-element-may1"> <xsl:element name="xs:choice"> <xsl:if <xsl:attribute name="minoccurs"> <xsl:value-of /> <xsl:if <xsl:attribute name="maxoccurs"> <xsl:value-of /> <xsl:element name="xs:element"> <xsl:attribute name="ref"><xsl:value-of /> <!-- <xsl:apply-templates select="text() child::node()"/> </xsl:element> <xs:element ref="xenc:encrypteddata" /> </xsl:element>

7 XSLT (5) MAY2 <!-- <xs:element ref="xxxxxxxxxx" minoccurs="m" maxoccurs="n"/> <xs:choice> <xs:element ref="xxxxxxxxxx" minoccurs="m" maxoccurs="n"/> <xs:element ref="xenc:encrypteddata" minoccurs="m" maxoccurs="n"/> </xs:choice> <xsl:template name="xenc-element-may2"> <xsl:element name="xs:choice"> <xsl:element name="xs:element"> <xsl:attribute name="ref"><xsl:value-of /> <!-- <xsl:apply-templates node()"/> </xsl:element> <xs:element ref="xenc:encrypteddata"> <xsl:if <xsl:attribute name="minoccurs"> <xsl:value-of /> <xsl:if <xsl:attribute name="maxoccurs"> <xsl:value-of /> </xs:element> </xsl:element> </xsl:stylesheet> MUST MAY1 MAY2

8 demo WS-Security TravelXML WTP Eclipse Tomcat-Plugin Tomcat Axis1.3 telnet SOAP MUST&MAY MUST

9 (1) TravelXML1.1.1 axis1.3 wsdl2java (2) SOAP <?xml version="1.0" encoding="utf-8"?> <soapenv:envelope xmlns:soapenv=" xmlns:xsd=" xmlns:xsi=" <Header:Header xmlns:header=" <wsse:security Header:mustUnderstand="1" xmlns:wsse=" <xenc:encryptedkey xmlns:xenc=" <EncryptionMethod Algorithm=" xmlns=" xmlns:ds=" <KeyInfo xmlns:dsig=" <wsse:securitytokenreference> <wsse:keyidentifier>...</wsse:keyidentifier> </wsse:securitytokenreference> </KeyInfo> <CipherData xmlns=" xmlns:ds=" <CipherValue>...</CipherValue> </CipherData> <ReferenceList> <DataReference URI="#..."/> </ReferenceList> </xenc:encryptedkey> </wsse:security> </Header:Header> <soapenv:body> <AllotmentBookingReport xmlns=" </AllotmentBookingReport> </soapenv:body> </soapenv:envelope> Web

10 (3) wsdl <xs:schema> <xs:schema xmlns:xs=" targetnamespace=" xmlns:tns=" sortium.org/ordersheet"> <xs:complextype name="ordersheettype"> <xs:sequence> <xs:element name="creditcard" type="tns:creditcardtype" minoccurs="0" /> </xs:sequence> </xs:complextype> <xs:complextype name="creditcardtype"> <xs:sequence> <xs:element name="cardtype" type="xs:string" /> <xs:element name="cardnumber" type="xs:string" /> <xs:element name= ExpireDate" type="xs:string" /> <xs:element name="holdername" type="xs:string" /> </xs:sequence> </xs:complextype> </xs:schema> <xs:schema xmlns:xs=" targetnamespace=" xmlns:tns=" <xs:element name="ordersheet1" type="c:ordersheettype" /> <xs:element name="ordersheet2" type="c:ordersheettype" /> </xs:schema> CardNumber XSLT xmlns:xenc= XSLT xmlns:xxx= XSLT XML name QName xmlns (must) <xsl:attribute name="xmlns:xsl" namespace="whatever"> XSL Transformations (XSLT) 1.0 W3C xenc:encrypteddata xmlns:xenc=

11 Web XSL MUST,MAY XPath XPath. XSLT Java1.5+Xalan2.7.0 set CLASSPATH=xalan.jar;%CLASSPATH% set CLASSPATH=xercesImpl.jar;%CLASSPATH% java org.apache.xalan.xslt.process -in xsd.xsd -out xsd.xsd -xsl xslt.xsl

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

untitled

untitled 0 0 TravelXML Ver. () 00/0/ TravelXML TravelXML Ver. 0 http://www.xmlconsortium.org/wg/travelxml/ http://www.jata-net.or.jp/xml/index.htm TravelXML ver. /0 TravelXML Ver. Ver 00/0/.0 00//0.0. 00/0/. XML

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

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

XMLとXSLT

XMLとXSLT XML と XSLT 棚橋沙弥香 目次 現場のシステム構成とXML/XSLの位置づけ XMLとは XSL/XSLTとは Xalanのインストール いろいろなXSL XMLマスター試験の紹介 現場のシステム構成 HTML 画面上のデータ 電文 電文 外部 WEB サーバー (Java) CORBA 通信 認証サーバー (C 言語 ) DB XML 電文 HTML XSL XSLT 変換今回の説明範囲

More information

Webプログラミング演習

Webプログラミング演習 Web プログラミング演習 STEP11 XSLT を使った画面生成 XML:Extensible Markup Language コンピュータが扱うデータや文書を表現する技術 SGML(Standard Generalized Markup Language) の改良 利用者が自由に拡張可能なマークアップ言語を設計 HTML=SGML を利用して作成された Web ページ記述言語 XHTML=XML

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

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

Webサービス実証実験プロジェクト デモアプリ発表資料

Webサービス実証実験プロジェクト デモアプリ発表資料 Web Vol.2 2 XML Week 6 NewsML 2003 6 2 XML PFU, Web WG NewsML Web NewsML Web UDDI WS-Security Demonstration 2 XML Web WG PFU Web WG XML PDA NewsML WG WG XML DB WG WG XML Web WG XML ( ) XML Web WG Web 4

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

xslt #xslt

xslt #xslt xslt #xslt 1 1: xslt 2 2 2 Examples 2 2 XSLT 3 2: xslt 7 Examples 7 XSLT 7 8 You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: xslt It is an unofficial

More information

sec( ).ppt

sec( ).ppt XML XML XML WSS Web Service Security - 2 - XML - 3 - Cont. XML Apache Project ( ) - 4 - 2001 2002 2003 XKMS XML SAML SSO SAML XML XML Web XML - 5-2004 XML - 6 - - 7 - XKMS 2.0 W3C: 2004-04-05 XML DSS OASIS:CD

More information

TravelXMLを利用した Webサービス実証実験デモ

TravelXMLを利用した Webサービス実証実験デモ UDDI UDDI TravelXML UDDI TravelXML UDDI TravelXML 2 UDDI UDDI ( ) ( ) ) ( ) ID AC0001 ID AC0002 ID AC0003 Web Web UDDI ID 3 UDDI UDDI API UDDI EndPoint

More information

Microsoft Word - 2部-3.doc

Microsoft Word - 2部-3.doc 目 次... 3 1. 課題の概要... 3 図 1 XSLT スタイルシートによる HTML 変換...3 リスト1 プログラム実行イメージ (HTML 変換モード )... 3 図 2 HTML 変換モードの HTML をブラウザで表示したときの例...4 リスト2 プログラム実行イメージ ( 人気ランキングモード )... 5 リスト3 人気ランキングモードのリストの条件... 5 図 3 人気ランキングモードのリストのツリー構造...

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

Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4

Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4 XML Day Web2.0 REST SOAP SOAP REST WADL, WSDL2.0 REST SOAP " " 2006 12 11 XML Web2.0 SOAP REST 2 Web SOAP Internet Web REST SOAP REST 3 REST SOAP 4 REST Representational State Transfer REST Web URL XML

More information

.xml.xsl bcs.dtd 2. 提案 BCS.DTD のエレメントと属性 BCS.DTD のエレメントの属性を以下に示す 出 エレメント説明 現 属性 下位構造 数 code 適宜工事コード等を記述する 任 意 Common Docinfo Reference UkeoiKeiyakusyoHikaeSoufusyo KoujiTyakusyuTodoke SongaihokenKeiyakuHoukokusyo

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

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

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

XMLの利用(XMLとXSL)

XMLの利用(XMLとXSL) XML の利用 XML(Extensible Markup Language) とは XML の基礎知識 XML とは WC(World Wide Web Consortium) で標準化された情報記述言語で有る 情報記述言語には HTML(Hyper Text Markup Language) が有り インターネット上の文書を標準化し世界規模の文書の閲覧を可能に仕たが 固定的なタグしか使用出来ない為

More information

XSLの活用と技術内容の紹介

XSLの活用と技術内容の紹介 XSL XML WG XSLXSLT SWG XSL 1 Agenda XSL XSL-FO XSLT XSL-FO XSL 2 XSL XSL XSL 3 XSL XSL W3C 1.0 2001-10-15 XSL XML (XSLT) XML (XSL-FO Formatting-Object ) XML XSL 4 XSL 5 XML 1.0 1998-02-10 XSLT 1999-11-16

More information

Microsoft Word - XML.doc

Microsoft Word - XML.doc XML(extensible markup language) ( インターネット時代の ) 拡張可能なタグによる汎用的データ記述言語データを, アプリケーションに依存しない形式で, 内容や意味を表すタグをつけて, テキスト形式で保存する ソフトウェアが意味を理解し情報処理することを目指す semantic Web( コンテンツの意味がコンピュータに理解可能な web, 情報 web から知識 web

More information

セキュリティ関連XML規格の紹介

セキュリティ関連XML規格の紹介 XML 2002 6 10 XML WG SWG XML XML XML XML XML 2 XML 3 XML XML 4 2001 2002 7 8 9 10 11 12 1 2 3 4 5 6 XML V2 XML XML Web XACML SAML XKMS XML 5 XML 6 : ( ) ( ) : ) ( / ) XML 7 DoS XML 8 FW DIS DoS XML 9 XML

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

Microsoft Word - 3部.doc

Microsoft Word - 3部.doc 目 次... 4 1. 課題の概要... 4 図 1 掲示板画面の例 ( 通常表示 )... 4 図 2 掲示板画面の例 ( 追加 )... 5 図 3 掲示板画面の例 ( 検索 )... 5 図 4 掲示板画面の例 ( 一覧表示 )... 6 2. データの保存... 7 リスト1 XML のスキーマ条件... 7 図 5 BBS.xml のツリー構造... 7 リスト2 BBS.xml... 8

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

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

WS-BPEL ActiveGlobe BizEngine Copyright XML 2

WS-BPEL ActiveGlobe BizEngine Copyright XML 2 (WS-BPEL) Copyright XML Web Web NEC WS-BPEL ActiveGlobe BizEngine Copyright XML 2 Web ( WS ) WS( ) WS( ) WS(UTM TKY ) WS( ) WS WS WS (Aggregate) WS WS-BPEL(Web Services Business Process Execution Language)

More information

国土数値情報(医療機関)

国土数値情報(医療機関) 国土数値情報 ( 医療機関 ) 製品仕様書 第 1.0 版 平成 22 年 3 月 国土交通省国土計画局 目次 1. 概覧... 1 1.1 空間データ製品仕様書の作成情報... 1 1.2 目的... 1 1.3 適用範囲... 1 1.4 引用規格... 2 1.5 用語と定義... 2 1.6 略語... 2 1.7 参考資料... 2 2. 適用範囲... 3 2.1 適用範囲識別...

More information

untitled

untitled Java web Java Web Applet - JVMJava Servlet - JVMJava JSP (Java Server Pages) SOAP (Simple Object Access Protocol) WebService XML (Extended Markup Language) J2EE (Java2 Enterprise Edition) JavaScript Ajax

More information

2 ExampleModel MiningSchema ModelStats. ExampleModel, modelname functionname algorithmname functionname associationrules, sequences, classification, r

2 ExampleModel MiningSchema ModelStats. ExampleModel, modelname functionname algorithmname functionname associationrules, sequences, classification, r 1 PMML 1.1 PMML IT Data Mining Group XML PMML PMML XML Verion 1.0 Version 2.1 Version 3.0 SOURCEFORGE.NET Public Forum 1.2 PMML XMLSchema

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション SOAP Web http://www.infoterianet.com/ Web SOAP WSDL UDDI C/S + C/S ( ) ( ) DCOM CORBA Java-RMI Web C/S Web MSN Yahoo!.com C/S? ActiveX DHTML HTML? Programmable Web HTML Viewable Web View HTML(Document

More information

サイボウズ Office8 API マニュアル API 概要 第 1 版 サイボウズ株式会社

サイボウズ Office8 API マニュアル API 概要 第 1 版 サイボウズ株式会社 サイボウズ Office8 API マニュアル API 概要 第 1 版 サイボウズ株式会社 はじめに はじめに 本書では サイボウズ (R) Office(R) 8 連携 API 1.0.0 の詳細について説明しています この連携 API はサイボウズ (R) Office(R)8 と外部システムを連携するために Office 側が提供する API 関数です 本書の内容をよくお読みいただいた上で

More information

おなじ変換を実現する XSLT スタイルシートを岩井が書いてみた それが下の例 2 である 例 2 <indexterm> 要素を <title> 要素の外に移動させる XSLT スタイルシート 1: <?xml version="1.0" encoding="utf-8"?> 2: <xsl:st

おなじ変換を実現する XSLT スタイルシートを岩井が書いてみた それが下の例 2 である 例 2 <indexterm> 要素を <title> 要素の外に移動させる XSLT スタイルシート 1: <?xml version=1.0 encoding=utf-8?> 2: <xsl:st 第 9 講 XSLT 入門 XML で XML を処理する? ( 担当者 : 岩井茂樹 ) 9.1 DOMとXSLT XML 入門 第 10 章の例題 10-5の課題は,XML 文書の構造変換である サンプルのXML 文書 ( 同書, pp.375-376) では, いくつかの 要素が誤って 要素の中に置かれている これを, 要素の兄弟の位置に移動する変換をおこなう

More information

本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何? Formatter は XSL-FO のレンダリングエンジンです XSL-FO

本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何? Formatter は XSL-FO のレンダリングエンジンです XSL-FO 美味しい DITA の作り方セミナー 10/12/20 1 AH Formatter で DITA を自動組版してみよう アンテナハウス株式会社 : 小林具典 10/12/20 2 本日のテーマ Formatter って何? Formatter や XSL-FO 関連の話 DITA Open Toolkit って何? DITA OT がやってくれることカスタマイズの話 Formatter って何?

More information

セマンティックWebの動向とメタデータ

セマンティックWebの動向とメタデータ Web 2003-05-27 XML XML Web WG RDF RSS RDF ) RSS 1.0 XHTML SVG NewsML RSS XHTML SVG NewsML RSS RSS RS S RSsS Web PDF Web 2 HTML title meta Web NewsML Id RDF W3C Web 3 HTML NewsML RSS(RDF ) XML RDF HTML(XHTML)

More information

Microsoft Word - 検証結果まとめ_ doc

Microsoft Word - 検証結果まとめ_ doc 気象庁防災情報 XML フォーマット スキーマとサンプル電文の動作検証について 平成 21 年 12 月 28 日付 気象庁防災情報 XML フォーマット スキーマとサンプル電文の修正 追加提供について XML コンソーシアムのご協力により 各種 XML 関連ソフトウェアにおける動作状況について検証頂きました 同仕様をご利用いただく際の参考とするべく 検証結果を公開いたします 要旨 各種ベンダー系

More information

ocg:md_metadata... 4 ocg:identificationinfo... 0 ocg:md_dataidentification... 2 ocg:citation...6 ocg:title... 8 ocg:jornal

ocg:md_metadata... 4 ocg:identificationinfo... 0 ocg:md_dataidentification... 2 ocg:citation...6 ocg:title... 8 ocg:jornal .... 2.... 2 3.... 4 ocg:md_metadata... 4 ocg:identificationinfo... 0 ocg:md_dataidentification... 2 ocg:citation...6 ocg:title... 8 ocg:jornal... 20 ocg: volume... 22 ocg:... 24 ocg:cruise... 26 ocg:ship...

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

XML Consortium Web Web ( ) XML Consortium XML Consortium Web TravelXML Web Web ( Web ) Web XML Consortium 2

XML Consortium Web Web ( ) XML Consortium XML Consortium Web TravelXML Web Web ( Web ) Web XML Consortium 2 2005 1 14 ( ) matsu@kabuki.tel.co.jp TravelXML ( ) 2 XML 209 75 IT 22 16 20 SOA TravelXML ContactXML Contents 4 5 / XML/ XML/ XML XML 6 2001/06 2002/02 2002/06 NewsML NewsML XML Day (2001 11 22 XML Day

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

情報システム 第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

Oracle WebCenterページのディスカッション・スレッドの表示

Oracle WebCenterページのディスカッション・スレッドの表示 テクニカル ノート Oracle WebCenter Oracle WebCenter ページのディスカッション スレッドの表示 2008 年 1 月 非常に効率的なコラボレーション ツールのディスカッション サービスによって ユーザーは関連メッセージのトピックとスレッドに関する意見を交換できます ディスカッション サービスでは カテゴリとフォーラムを管理します ユーザーは ディスカッション サービスへログインし

More information

情報アプリケーションⅠ シラバス

情報アプリケーションⅠ シラバス XML の基礎と実践 1/58 Ⅰ. XML の基本と構造 1. XML とは XML(eXtensible Markup Language) とは 情報記述言語 である HTML(Hyper Text Markup Language) はプレーンテキスト ( 平文 ) にタグと呼ばれる命令を埋め込む (Markup) ことで文書を修飾したり 構造を示したりする Web 用のマークアップ言語である

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

SAML

SAML 2003 6 2 XML Consortium SWG ( )NTT ( ) Copyright XML Consortium 2003/06/02 1 Copyright XML Consortium 2003/06/02 2 2002 2003 7 8 9 10 11 12 1 2 3 4 5 6 3/5 6/2 Copyright XML Consortium 2003/06/02 3 Copyright

More information

rzasppdf.ps

rzasppdf.ps IBM i 7.2 Database SQL XML IBM i 7.2 Database SQL XML 237 IBM i 7.1 ( 5770-SS1) RISC CISC IBM IBM i Version 7.2 Database SQL XML Programming 1 2014.4 Copyright IBM Corporation 2012, 2013. SQL XML.......

More information

目次 1. はじめに ネームスペース 全体のネームスペース 運用管理系のネームスペースの位置付け 状態記録の構造モデル (UML 図 ) 状態記録の構造 必須項目構造 必須項

目次 1. はじめに ネームスペース 全体のネームスペース 運用管理系のネームスペースの位置付け 状態記録の構造モデル (UML 図 ) 状態記録の構造 必須項目構造 必須項 統一河川情報システム 付属書 C 付属書 C 運用管理系 XMLスキーマ定義運用管理系 XMLスキーマ定義 (Ver.1.2) 平成 18 年 3 月 財団法人河川情報センター 目次 1. はじめに... 1 2. ネームスペース... 1 2.1 全体のネームスペース... 1 2.2 運用管理系のネームスペースの位置付け... 3 3. 状態記録の構造モデル (UML 図 )... 4 3.1

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

XMLプログラミング(DOM編)

XMLプログラミング(DOM編) XML プログラミング DOM に依る XML 文書の操作 DOM と DOMDocument オブジェクト プログラミング言語から XML を扱うには DOM(Document Object Model) と呼ばれるプログラミングインターフェイスを利用するのが最も簡単で有る DOM は Internet Explorer 5.x 以降の XML パーサ (MSXML) に実装されて居る DOMDocument

More information

XPath式を用いたApplication Profileに基づくメタデータスキーマとインスタンスの関連付け

XPath式を用いたApplication Profileに基づくメタデータスキーマとインスタンスの関連付け 人工知能学会研究会資料 SIG-SWO-A101-03 XPath 式を用いた Application Profile に基づくメタデータスキーマとインスタンスの関連付け A Model for Mapping Metadata Instances to Metadata Schema based on DCMI Application Profile using XPath Expressions

More information

untitled

untitled SAML 2004 12 9 y-endo@ah.jp.nec.com 2. SAML SAML SAML SAML SAML SSO SAML 4. Liberty Alliance Liberty Liberty ID-FF1.2 NEC Corporation 2004 2 PKI ID NEC Corporation 2004 4 PKI ID NEC Corporation 2004 5

More information

Copyright XML 2005,2006 All rights reserved. XML Consortium Web Web Web Web Web Web Web

Copyright XML 2005,2006 All rights reserved. XML Consortium Web Web Web Web Web Web Web Web Web Web Web Web Web Demonstration Web Blog Sky Active Field Blog RSS Web (WS-BPEL) 2 Web Web Web 2004 2005 6 10 Web PFU matsuyama.nori@pfu.fujitsu.com Web SOA Web TravelXML ContactXML Contents 4 Web

More information

intra-mart Accel Platform — Webサービス 認証・認可 仕様書   第5版  

intra-mart Accel Platform — Webサービス 認証・認可 仕様書   第5版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform Web サービス認証 認可仕様書第 5 版 2017-04-01 改訂情報はじめに本書の目的対象読者注意事項本書の構成概要 Webサービスとは SOAP WSDL Apache Axis2 認証 認可機能概要システム概要認証モジュール Webサービス

More information

...1...3...5...7...9...11...13...15...17...19...21...23...25...27...29...31...33...35...37...39...41...43...45...47...49...51...53...55...57...59...61...63...65...67...69...71...73...75...77...79 ...81...83...85...87...89...91...93...95...97...99...101...103...105...107...109...

More information

Web Web Web 2

Web Web Web 2 PFU syouda.kimiko@pfu.fujitsu.com Web Web Web Web Web Web Web 2 Web Web Web Web Ajax Web Web Request.Response Ajax Ajax(Asynchronous JavaScript + XML) Google Maps Google Suggest Ajax Up Ajax 4 My Travel

More information

セキュリティ関連XML規格の紹介

セキュリティ関連XML規格の紹介 XML 2003 6 2 XML Consortium XML XML Signature XML Encryption XKMS Web WS-Security SAML XACML 2003/06/02 2 XML XKMS 2.0 W3C:WD 2003-04-18 A XPath Filter 2.0 W3C: 2002-11-08 C XML Signature W3C: 2002-02-12

More information

Web Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App

Web Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App Web 2005 12 15 XML Day XML matsu@kabuki.tel.co.jp 2005 1 1 Web Web Web 2005 2 2 Web 2005 3 3 Web ( (SOAP (SOAP/http (WSDL UDDI 1. 2.XML 3. (XDoS http, https SOAP XML Web/App ( App 2005 4 4 SOAP Crypto-Gram

More information

WebOTXマニュアル

WebOTXマニュアル WebOTX アプリケーション開発ガイド WebOTX Enterprise Service Bus チュートリアル対応バージョン : 6.5 7.1 版数 : 初版リリース : 2007 年 7 月 Copyright (C) 1998-2007 NEC Corporation. All rights reserved. 1 目次 1. ESBチュートリアル...3 1.1. チュートリアル (

More information

(Informative) D-Case D-Case [1] D-Case ( DEOS: 2014) D-Case GSN (Goal Structuring Notation)[2] D-Case GSN [2] [2] D-Case D-Case [2] [3] D-Case GSN D-C

(Informative) D-Case D-Case [1] D-Case ( DEOS: 2014) D-Case GSN (Goal Structuring Notation)[2] D-Case GSN [2] [2] D-Case D-Case [2] [3] D-Case GSN D-C !"#$%&&'()*+)',$'-$.#/#,0*1)2)+3$4,5),##6),5$-'6$7/#,$83&+#9& D-Case * 1 DEOS D-Case * 2 2015 4 20 *1 version 1.0 *2 : ( matsuno.yutaka@nihon-u.ac.jp) ( takai@is.naist.ac.jp) c Yutaka Matsuno, Toshinori

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

デザイン・スペース・エクスプローラ

デザイン・スペース・エクスプローラ 12. QII52008-6.1.0 Quartus II Quartus II FPGA Tcl/Tk DSEDSE DSE DSE DSE DSE Quartus II Synthesis Fitter 1 DSE Quartus II Fitter Quartus II Altera Corporation 12 1 2006 11 Quartus II Volume 2 DSE DSE 1

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

052-XML04/fiÁ1-part3-’ÓŠ¹

052-XML04/fiÁ1-part3-’ÓŠ¹ & XML Data Store Part 3 Feature*1 AKIMOTO, Shougo i i i i i i inter 52 XML Magazine 04 i i i i i i i i P a r t 3 i i i i i XML Magazine 04 53 & XML Data Store Feature*1 i i inter i inter i inter inter

More information

SystemDirector Developer's Studio(V3.2) 適用ガイド

SystemDirector Developer's Studio(V3.2) 適用ガイド 目次 6. 開発時のトラブルシューティング...2 6.2. WTP( 共通 ) の注意制限事項... 2 6.2.1. インストール済みサーバランタイム環境 画面の キャンセル...2 6.2.2. サーブレットの作成 画面の スーパークラスからのコンストラクター...3 6.2.3. Webプロジェクトの設定 画面の デフォルトの復元...3 6.2.4. サーバー 画面の デフォルトの復元...4

More information

表 1. PayPal の WSDL ファイルと XSD ファイルの場所 PayPal Sandbox API サービスでの開発とテスト PayPal スキーマ ebl ベースコンポ ーネントおよび

表 1. PayPal の WSDL ファイルと XSD ファイルの場所 PayPal Sandbox API サービスでの開発とテスト PayPal スキーマ   ebl ベースコンポ ーネントおよび PayPal SOAP API の基本 PayPal SOAP API は 総称してウェブサービスと呼ばれるオープンスタンダードに基づいています ウェブサービスには 簡易オブジェクトアクセスプロトコル (SOAP) ウェブサービス記述言語(WSDL) XML スキーマ定義言語 (XSD) などが含まれます さまざまなプラットフォームで動作する幅広い開発ツールが ウェブサービスをサポートしています 多くのウェブサービスと同様に

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

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

署名ツール検証報告書

署名ツール検証報告書 2010 01 27 XML 1.... 3 2.... 5 3.... 15 4.... 18 5.... 22 6.... 22 Copyright (c) XML 2010 All rights reserved. Page-1/23 Copyright (c) XML 2010 All rights reserved. Copyright (c) XML 2010 All rights reserved.

More information

Version C 1 2 3 4 5 1 2 3 4 5 6 7 8 9 0 A 1 2 1 3 4 5 1 1 2 1 1 1 2 4 5 6 7 8 3 1 2 C a b c d e f g A A B C B a b c d e f g 3 4 4 5 6 7 8 1 2 a b 1 2 a b 1 2 1 2 5 4 1 23 5 6 6 a b 1 2 e c d 3

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

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

ロードバランサー配下のシボレス IdP 環境設定に関する検証実験 2009 年 12 月 22 日国立情報学研究所学術ネットワーク研究開発センター山地一禎, 中村素典

ロードバランサー配下のシボレス IdP 環境設定に関する検証実験 2009 年 12 月 22 日国立情報学研究所学術ネットワーク研究開発センター山地一禎, 中村素典 ロードバランサー配下のシボレス IdP 環境設定に関する検証実験 2009 年 12 月 22 日国立情報学研究所学術ネットワーク研究開発センター山地一禎, 中村素典 2 1. 目的ロードバランサー配下で複数のシボレス IdP からなるクラスタを構築するための設定方法を調べることを目的とする. 2. 実験環境検証実験は, ロードバランサー 1 台 (F5 ネットワークスジャパン株式会社 BIG-IP),

More information

Table of Contents XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO XSL-FO Keep

Table of Contents XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO XSL-FO Keep Extensible Stylesheet Language (XSL-FO) 2001 4 Table of Contents...4...5 XML...5 XSLT...6 XSLT...7 XSLT...7 XSL-FO XSLT...7 XSL-FO...8 XSL-FO...9...9 XSL-FO...10...10...10...10...11...12...12 Keep Break...13

More information

mr0805.indd

mr0805.indd 62 MAY 2008 MAY 2008 63 64 MAY 2008 MAY 2008 65 66 MAY 2008 MAY 2008 67 68 MAY 2008 MAY 2008 69 70 MAY 2008 MAY 2008 71 72 MAY 2008 MAY 2008 73 74 MAY 2008 MAY 2008 75 76 MAY 2008 MAY 2008 77 78 MAY 2008

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション TEL:045-866-8114 E-Mail: s-masui@msa.hitachi-sk.co.jp TEL:03-3491-7688 E-Mail: improj@pmcnet.co.jp PMC ( ) http://www.pmcnet.co.jp PS PS PS etc. etc. etc. W3C DOM XML XML B2 Enterprise Publisher

More information

日本オラクルのSOA戦略

日本オラクルのSOA戦略 SOA Oracle SOA Suite Enterprise SOA SOA Based Integration SOA 2 SOA Oracle SOA Suite Enterprise SOA SOA Based Integration SOA 3 SOA Oracle SOA JDeveloper MANAGEMENT & MONITORING BAM

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

Microsoft PowerPoint - グリッド協議会GT4演習資料_2007_配布用

Microsoft PowerPoint - グリッド協議会GT4演習資料_2007_配布用 演習 1~6 Globus Toolkit Version 4 (Java WS Core) 演習 : WS-Resource の生成と機能拡張 目標 :GT4 Java Core WSRF 基本仕様のサポート確認 サーバー側の実装方法 サービス 各種設定ファイル ( の実装方法 ) 最低限 WSRF の標準的な機能は GT4 に含まれる標準で利用可能 GT4 標準の利用方法 wsrf-get-property

More information

IM-PDFAutoConverter for Accel Platform — セットアップガイド   第7版  

IM-PDFAutoConverter for Accel Platform — セットアップガイド   第7版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 IM-PDFAutoConverter for Accel Platform セットアップガイド第 7 版 2017-08-01 改訂情報はじめに本書の目的前提条件対象読者用語解説インストール前に全体のインストール作業の流れ必要なライセンスインストール前に必要な確認事項正常に動作しない環境注意事項サーバ構成について運用マシン構成例インストール

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

Microsoft Word - JPGIS改訂内容一覧.doc

Microsoft Word - JPGIS改訂内容一覧.doc 19 3 Japan Profile for Geographic Information Standards JPGIS 1 2 4.1.2 3 4.1.5 4.1.5 4 5 Class1 attr1class1class2 Class1 attr1[0..1]: Integer Class2 4-5 UML 4 6 Class1attr1 Class2 Class1 [0..1]Class2

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

Web API ドキュメントからの情報抽出によるプログラムライブラリ作成支援 筑波大学図書館情報メディア研究科 2013 年 3 月高井正成 目次 第 1 章はじめに... 1 第 2 章 Web アプリケーションとその開発手法... 3 2.1 Web アプリケーションと Web API... 3 2.2 Web API の種類... 5 2.3 Web API の仕様記述言語... 7 2.3.1

More information

WESB MTOM機能ガイド

WESB MTOM機能ガイド WESB V7.5.1 MTOM 利用ガイド Web ソリューション開発日本 IBM システムズ エンジニアリング 2009 IBM Corporation 目次 本資料の目的 MTOM の仕様 MTOM 使用のメリット MTOM サポートの前提環境 MTOM 使用のための設定と制限 設定方法 制限事項 参考資料 2 Technical Flash - WESB MTOM 利用ガイド 2011 IBM

More information

講座計画書サンプル

講座計画書サンプル 2004 10 1 13:0014:30 12 () () Web 14:4518:00 - (PBL) 45 1 - - 1 1 - - - - Web - Web Web (1) PC (2) (3) (4) CVS Subversion 1 2 2004 10 8 Java Java Java 13:0014:30 Java Java Java EoD (Ease of Development)

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

オントロジ入門

オントロジ入門 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

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

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 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

week_17_1.ppt

week_17_1.ppt Web (-BPEL) NEC Copyright XML -BPEL ActiveGlobe BizEngine Copyright XML Web ( ) ( ) ( ) (UTM TKY ) ( ) (Aggregate) -BPEL(Web Services Business Process Execution Language) Copyright XML Travel Planner Copyright

More information

標準XML Schema作成ガイドライン

標準XML Schema作成ガイドライン XML Schema 1.0 2006 5 22 1....1 1.1...1 1.2...2 1.3...2 1.4...3 1.5...3 2....5 2.1...5 2.2 XML...7 2.3...8 3....10 3.1...10 3.2...13 4....17 4.1...17 4.2...19 4.3...22 4.4...25 4.5...26 4.6...26 4.7...27

More information

JavaとVisual Basicを使ったWebサービスの実装

JavaとVisual Basicを使ったWebサービスの実装 JavaVisual Basic Web moto@sag.hitachi-sk.co.jp http://www.hitachi-sk.co.jp/ Web? Web Web Web Web Web Web SOAP Web Web Web SOAP MicrosoftIBM Web Web SOAP, UDDI, WSDL EJB Java Java Java Assam Commerce Server

More information