WebServices4pub.PDF

Size: px
Start display at page:

Download "WebServices4pub.PDF"

Transcription

1 Web XML/SOAP Sarion Systems Research 2001/12/22 1 Agenda(1) I. Web II. Web 1. SOAP: XML 2. WSDL: XML 3. UDDI: SOAP 4. Web 2001/12/22 2 1

2 Agenda(2) III. Web 1. Microsoft:.NET 2. Apache-SOAP 3. IBM: Web Services Toolkit + Apache- SOAP 4. UDDI /12/22 3 I. Web Sarion Systems Research 2001/12/22 4 2

3 Web Web 2000 Web Microsoft:.NET IBM: WebSphere HP BEA Borland SilverStream 2001/12/22 5 Web Microsoft IBM SOAP WSDL UDDI Web ebxml: electronic business XML XML RosettaNet etc 2001/12/22 6 3

4 Web? HTTP SMTP XML etc agile 2001/12/22 7 Web (1) 2001/12/22 8 4

5 Web (2) 2001/12/22 9 Web 2001/12/

6 Web SOAP WSDL UDDI 2001/12/22 11 II. Sarion Systems Research 2001/12/

7 II. 1. SOAP: XML 2001/12/22 13 SOAP? : XML /12/

8 WSDL boxcarring batching 2001/12/22 15 RPC HTTP SOAP : price GetLastTradePrice( codenasdaq ); NASDAQ 2001/12/

9 SOAP-RPC/HTTP request POST /StockQuote HTTP/1.1 Host: Content-Type: text/xml; charset="utf-8" Content-Length: nnnn SOAPAction: "Some-URI" <Envelope> <Body> <GetLastTradePrice> <codenasdaq>abc</codenasdaq> </GetLastTradePrice> </Body> </Envelope> 2001/12/22 17 SOAP-RPC/HTTP response HTTP/ OK Content -Type: text/xml; charset="utf-8" Content -Length: nnnn <Envelope> <Body> <GetLastTradePriceResponse> <price>34.5</price> </GetLastTradePriceResponse> </Body> </Envelope> 2001/12/

10 SOAP/ SOAP Envelope SOAP/1.2: Part1 SOAP 2. SOAP Encoding SOAP/1.2: Part2 XML 3. HTTP binding SOAP/1.2: Part2 HTTP 4. RPC SOAP/1.2: Part2 SOAP RPC 2001/12/22 19 (1) SOAP Envelope SOAP XML Fault 2001/12/

11 SOAP <SOAP-ENV:Envelope xmlns:soap-env=" <SOAP-ENV:Header> : </SOAP-ENV:Header> <SOAP-ENV:Body> : </SOAP-ENV:Body> </SOAP-ENV:Envelope> 2001/12/22 21 XML <SOAP-ENV:Envelope xmlns:soap-env=" <SOAP-ENV:Body xmlns:n=" <n:tickersymbol>abc</n:tickersymbol> <n:notificatoinfrequency>p2d</n:notificatoinfrequency> <n:notificatoinduration>p30d</n:notificatoinduration> </SOAP-ENV:Body> </SOAP-ENV:Envelope> 2001/12/

12 SOAP Fault <SOAP-ENV:Envelope xmlns:soap-env=" <SOAP-ENV:Body> <SOAP-ENV:Fault> <faultcode>soap-env:server</faultcode> <faultstring>server Error</faultstring> <detail> <myfaultdetails> <message>illegal code Nasdaq: ABC</message> <errorcode>1001</errorcode> </myfaultdetails> </detail> </SOAP-ENV:Fault> </SOAP-ENV:Envelope> 2001/12/22 23 SOAP 2001/12/

13 SOAP <SOAP-ENV:Envelope xmlns:soap-env=" <SOAP-ENV:Header> <t:transaction xmlns:t="some-uri" SOAP-ENV:mustUnderstand="1"> 5 </t:transaction> </SOAP-ENV:Header> <SOAP-ENV:Body> : </SOAP-ENV:Body> </SOAP-ENV:Envelope> 2001/12/22 25 SOAP encodingstyle Header Body : Body SOAP Encoding XML <SOAP-ENV:Body xmlns:soap-env=" SOAP-ENV:encodingStyle=" <...> (SOAP Encoding XML ) </...> </SOAP-ENV:Body> 2001/12/

14 (2) SOAP Encoding SOAP Envelope Header Body XML XML XML : XML XML : XML 2001/12/22 27 SOAP Encoding b a c d e Struct a { b, c }; Struct c { d, e }; XML <a> <b> <d href="#d1" /> </b> <c> <d href="#d1" /> <e>1.0f</e> </c> </a> <d id="d1">abc</d> 2001/12/

15 SOAP Encoding XML Schema Part2: Datatypes : "NAKAMURA, Hiroshi" <Person xsi:type="xsd:string" xmlns:xsi=" xmlns:xsd=" NAKAMURA, Hiroshi </Person> : 1.23E12 <Rate xsi:type="xsd:float">1.23e12</rate> 2001/12/22 29 SOAP Encoding : book { author, text { abstract, preface, intro } } <book> <author>henry Ford</author> <text> <abstract>abstraction</abstract> <preface>prefatory text</preface> <intro>this is a book.</intro> </text> </book> 2001/12/

16 SOAP Encoding(1) : numbers[] <numbers SOAP-ENC:arrayType="xsd:int[2]"> <number>3</number> <number>4</number> </numbers> 2001/12/22 31 SOAP Encoding(2) : 2 a[2,3] <a SOAP-ENC:arrayType="xsd:string[2,3]"> <b> 1 1</b> <b> 1 2</b> <b> 1 3</b> <b> 2 1</b> <b> 2 2</b> <b> 2 3</b> </a> 2001/12/

17 SOAP Encoding <book> <title>title</title> <firstauthor> <name>first</name> <address href="#address-1"/> </firstauthor> <secondauthor> <name>second</name> <address href="#address-1"/> </secondauthor> </book> <Address id="address-1">...</address> 2001/12/22 33 (3) HTTP binding HTTP HTTP SOAPAction HTTP 200 HTTP 500 SOAP Fault 2001/12/

18 (4) RPC SOAP RPC RPC... [in] [in/out] RPC... [out] [in/out]... Fault 2001/12/22 35 II. 2. WSDL: XML 2001/12/

19 WSDL? : Web : : 2001/12/22 37 WSDL SOAP HTTP GET&POST MIME 2001/12/

20 WSDL (service) (port) (binding) (porttype) (operation) (mssage) (types) 2001/12/22 39 (1) : : : /12/

21 (1): LastTradePriceService SOAP/HTTP LastTradePriceGetInfoPortType GetLastTradePrice GetLastTradePriceDetailed 2001/12/22 41 (2) 4 XML Schema / / / 2001/12/

22 (2): TradePriceSubscription GetLastTradePrice / TickerSymbol LastTradePrice CodeNasdaq TradePrice 2001/12/22 43 II. 3. UDDI: SOAP 2001/12/

23 Web 2001/12/22 45 UDDI? : Web API SOAP WSDL 2001/12/

24 3 White Pages Yellow Pages Green Pages 2001/12/22 47 Web Service Type Registrations 2001/12/

25 UDDI businessentity: businessservice: bindingtemplate: 1 tmodel: publisherassertion: publisherassertion from/to businessentity tmodel businessservice 1 1 bindingtemplate 2001/12/ Web 2001/12/

26 Web HTTP: SSL/TLS SSL/TLS S/MIME HTTP SSL/TLS SOAP SMTP 2001/12/22 51 S/MIME SMTP /12/

27 Web SSL TLS S/MIME SOAP XML-Signature SOAP 2001/12/22 53 III. Web Sarion Systems Research 2001/12/

28 Agenda 1. Microsoft:.NET 2. Apache-SOAP 3. IBM: Web Services ToolKit + Apache- SOAP 4. UDDI /12/22 55 III. Web 1. Microsoft:.NET 2001/12/

29 ASP.NET 2001/12/22 57 ASP.NET abroad.asmx [WebMethod] WebService Language="C#" Class="Abroad" %> using System.Web.Services; public class Abroad { [WebMethod] public Hotel GetHotelInfo(string CRSCode, string HotelCode, string CityCode) {... } } 2001/12/

30 VisualStudio.NET VisualStudio.NET new... Abroad anabroad = new Abroad(); Hotel ahotel = anabroad.gethotelinfo(crscode, hotelcode, citycode); /12/22 59 (1) asmx WSDL WSDL proxy 2001/12/

31 (2) proxy SOAP ASP.NET SOAP ASP.NET SOAP asmx C# SOAP proxy 2001/12/22 61.NET Web ASP.NET Web Services ASP.NET Remoting COM SOAP ATL Server Web Services C++ ATL Server : /12/

32 III. Web 2. Apache-SOAP 2001/12/22 63 Apache-SOAP HTTP 2001/12/

33 Apache-SOAP SMTP (1) (6) (5) (2) (3) (4) 2001/12/22 65 Apache-SOAP (1) (2) (3) 2001/12/

34 (1) Java : Exchange getrate public class Exchange { public float getrate( String country1, String country2 ) { System.out.println( "getrate( " + country1 + ", " + country2 + " )" ); return F; // ToDo:! } } 2001/12/22 67 (2) Java Web XML 2001/12/

35 (3) Dynamic invocation Call call = new Call(); // URL url = new URL( " ); String urn = "urn:xmethods-currencyexchange"; SOAPHTTPConnection st = new SOAPHTTPConnection(); call.setsoaptransport( st ); call.settargetobjecturi( urn ); call.setmethodname( "getrate" ); call.setencodingstyleuri( Constants.NS_URI_SOAP_ENC ); Vector params = new Vector(); params.addelement( new Parameter( "country1", String.class, "USA", null )); params.addelement( new Parameter( "country2", String.class, "Japan", null )); call.setparams( params ); // "JPN" "Japan" Response response = call.invoke( url, "" ); if (!response.generatedfault() ) { Parameter result = response.getreturnvalue(); System.out.println( "Result = " + result.getvalue() ); } else {... } 2001/12/22 69 III. Web 3. IBM: Web Services ToolKit + Apache-SOAP 2001/12/

36 WSTK (2)WSDL WSDL (4) WSDL (5)proxy (6) (1) (3) 2001/12/22 71 (2)WSDL WSTK wsdlgen Java EJB Jar COM WSDL 3 Exchange_Service.wsdl Exchange_Service-interface.wsdl DeploymentDescriptor.xml 2001/12/

37 (3) wsdlgen DeploymentDescriptor.xml D: home WSDemo sample> java org.apache.soap.server.servicemanagerclient deploy DeploymentDescriptor.xml 2001/12/22 73 (5)proxy Exchange_Service.wsdl WSTK proxygen D: home WSDemo sample>proxygen Exchange_Service.wsdl >> Importing >> Transforming WSDL to NASSL.. >> Generating proxy.. Created file D: home WSDemo sample Exchange_ServiceProxy.java Compiled file D: home WSDemo sample Exchange_ServiceProxy.java Done. D: home WSDemo sample> 2001/12/

38 (6) proxy new public class ClientProxy { public static void main( String[] argv ) throws Exception { Exchange_ServiceProxy proxy = new Exchange_ServiceProxy(); float f = proxy.getrate( "USA", "Japan" ); System.out.println( f ); } } 2001/12/22 75 III. Web 4. UDDI 2001/12/

39 UDDI (2) (1) (5) (4) (3) (6) 2001/12/22 77 (1)(2)(4) WSTK UDDI4J SOAP 2001/12/

40 (5) SOAP tmodelkey ID tmodelkey ID find_business API businessinfo ID find_service API serviceinfo ID get_servicedetail API businessservice ID get_bindingdetail API bindingdetail UDDI4J SOAP 2001/12/22 79 III. Web /12/

41 SOAPBuilders Interoperability Lab: <URL: <URL: SOAP RPC RPC 2001/12/22 81 SOAP/1.1 sparse array int null? CR r WSDL 2001/12/

42 (1) [1] XML 1.0: [2] XML Schema: [3] HTTP/1.1: [4] SMTP: [5] SOAP/1.1: [6] SOAP/1.2: [7] WSDL/1.1: wsdl.asp [8] UDDI: [9] WSFL: 4.ibm.com/software/solutions/webservices/pdf/WSFL.pdf 2001/12/22 83 (2) [10] XLANG: [11] SOAP Security Extensions: Digital Signature: [12] RELAX: [13] TREX: [14] XML-Signature: [15] SOAP-RP: [16] XML Protocol (XMLP) Requirements: [17] XML Protocol Abstract Model: /12/

43 (1) [1] Microsoft.net: [2] IBM e-businnes: [3] SUN ONE: [4] CORBA: [5] COM: [6] EJB: [7] MQSeries: [8] W3C: [9] SOAP : 6.ibm.com/jp/developerworks/xml/010330/j_soap-dsig.html [10] UDDI Overview: [11] ebxml: [12] W3C: XML Protocol Activity: /12/22 85 (2) [13] Uche Ogbuji, "SOAP WSDL ": 6.ibm.com/jp/developerworks/webservices/001201/j_ws-soap-index.html [14], "e-business ": 6.ibm.com/jp/developerworks/webservices/010119/b2b.html [15] Dave Fisco, "IBM Web ": 6.ibm.com/jp/developerworks/web/001013/j_w-int.html [16] Rod Smith, "Web Services ": 6.ibm.com/jp/developerworks/webservices/010202/j_ws-check.html [17], " UDDI : 6.ibm.com/jp/developerworks/xml/000908/x html [18], "XML SOAP UDDI B2B/e ": [19] Doug Tidwell, "UDDI4J: Web Services ": 6.ibm.com/jp/developerworks/webservices/010406/j_ws-uddi4j.html 2001/12/

44 (3) [20] Graham Glass, "Web Services 4 ": 6.ibm.com/jp/developerworks/webservices/010413/j_ws-peer4.html [21] SOAP-ml-JP: [22] Web : [23] Apache SOAP : [24] Microsoft SOAP : [25] IBM WSDL : [26] IBM Web Services UDDI : [27] Ruby : [28] : /12/

Oracle9i JDeveloperによるWebサービスの構築

Oracle9i JDeveloperによるWebサービスの構築 Oracle9i JDeveloper Web Web Web Web Web Web EJB Web EJB Web Web Oracle9iAS Apache SOAP WSDL Web Web Web Oracle9i JDeveloper Java XML Web Web Web Web Simple Object Access Protocol SOAP :Web Web Services

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

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

IT Web NEC Corporation

IT Web NEC Corporation IT Web 2002 5 27 1 1. Web 2. Web 3. Web 4. Web 5. 6. Web 7. Web 8. 2 . Web 3 4 Web Web HTML Web XML Web Web LAN) EAI WebEAI) ) SCM ( ) (SOAP, UDDI) ) (Web ) Web/HTML Web/HTML Web/XML Web/XML Web Web 1.1

More information

ebXMLメッセージ構造\(V 1.0\)

ebXMLメッセージ構造\(V 1.0\) B2B ebxml TRP 2001 11 5 NEC m-iha@ak.jp.nec.com B2B EDI JCA 51,000 EDI EDI EDI XML-EDI 65.6% 48.8% ECOM EDI 2001 1 XML / Internet (HTTPS) / MarchanDising 2 1. ( ) 2. 3. 3 4 XM B2B DB Web B2B HTTP SSL XML

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

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

,. OpenXM... :. Simplify. OX-RFC-104 (OoHG).. knoppix/math. Contributed software..

,. OpenXM... :. Simplify. OX-RFC-104 (OoHG).. knoppix/math. Contributed software.. , OpenXM : Simplify OX-RFC-104 (OoHG) knoppix/math Contributed software Q OpenXM?, Conglomerate (ASolomon) (Mathematical Knowledge Management) Q? http://wwwopenxmorg download asir-contrib knoppix/math

More information

WebサービスとCORBA

WebサービスとCORBA AP Web Web WG EAI AP EAI Web AP Web -- WSFL -- BTP EAI AP (1) webmethods Enterprise Hub&Spoke (publish/subscribe ) ( ) webmethods Enterprise Server webmethods Enterprise Adopters AP EAI AP (2) IBM MQSeries

More information

UDDIにおける国際化・セキュリティー

UDDIにおける国際化・セキュリティー UDDI 2002 9 17 (UDDI WG), IBM Corporation UDDI (I18N) I18N for Inquiry I18N for Publication Copyright 2002, IBM Corporation 2 UDDI V3 I18N basic XML Unicode3.0 (UDDI V3) UTF-8 xml:lang I18N for Inquiry

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

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

XMLを基盤とするビジネスプロトコルの動向

XMLを基盤とするビジネスプロトコルの動向 XML Trends of XML-Based Business Protocols ebxml Web XML ebxml UN/CEFACT EDIFACTOASIS XML Web W3C World Wide Web Consortium Abstract XML-based technologies such as the Electronic Business XML Initiative

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

IBM Web XML アプリケーションの動作 XML XML Java IBM Web なぜ XML を使うのか? S 以下のデータをシリアライズしてみよう! WebSphere Web EJB XML J2EE

IBM Web XML アプリケーションの動作 XML XML Java IBM Web なぜ XML を使うのか? S 以下のデータをシリアライズしてみよう! WebSphere Web EJB XML J2EE IBM Web Web サービス技術概説と現状 IBM Web XML アプリケーション S Webアプリケーションとして構築 HTTPによる通信 サーブレットなどの技術を利用 S メール アプリケーションとして構築 SMTPによる通信 JavaMailなどを利用 S 独自に組み立て パース ( シリアライズ デシリアライズ ) 1 IBM Web XML アプリケーションの動作 XML XML Java

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Web WS-Reliability 2003 10 14 WS-Reliability Web Web TCP/IP, HTTP XML SOAP, ebxml MS WSDL, UDDI ebxml BPSS, CPPA, ebxml Registry Web : B2B B2B Web RosettaNet ebxml Initiative OASIS W3C (WSDL) UDDI.org

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

wpEnterpriseSvr.doc

wpEnterpriseSvr.doc COBOLJava.NETWeb IT COBOL Micro Focus Enterprise Server Enterprise Server COBOL Enterprise Server COBOL Enterprise Server COBOL COBOL COBOL Java.NET IT Micro Focus COBOLJ2EE.NET Web COBOL Enterprise Server

More information

HOLON/MD

HOLON/MD Copyright(C) 2002 NEC and XML Consortium. All rights reserved. 1 Copyright(C) 2002 NEC and XML Consortium. All rights reserved. 2 XML XML Copyright(C) 2002 NEC and XML Consortium. All rights reserved.

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

TCNT-Webサービス ppt

TCNT-Webサービス ppt ACM SIGMOD TCNT Web yuhara@jp.fujitsu.com 2002 7 12 1 Web Web SOAP WSDL UDDI Web e 2 Web (Web Services) Web XML SOAP SOAP/WSDL/UDDI 3 Web 4 5 (OS, ) WWW(HTML) CORBA DCOM 6 Ethernet(MAC) TCP/IP HTTP XML

More information

SSO Sales/Tech combined webinar template

SSO Sales/Tech combined webinar template HP Web e-speak web HP Agenda page 2 Search Engine Google Web Site www.hp.com Search Engine Yahoo Web page 3 Web Web Web page 4 CHAPTER 1 Do It Yourself CHAPTER 2 Do It For Me PC,, ITS... etc.) page 5 E-service

More information

SOAP Simple object Access Protocol マイクロソフト株式会社シニアテクニカルエバンジェリスト萩原正義テクニカルエバンジェリスト野村一行

SOAP Simple object Access Protocol マイクロソフト株式会社シニアテクニカルエバンジェリスト萩原正義テクニカルエバンジェリスト野村一行 SOAP Simple object Access Protocol マイクロソフト株式会社シニアテクニカルエバンジェリスト萩原正義テクニカルエバンジェリスト野村一行 SOAP 概要 SOAP とは何か? 構造化された情報を交換するための XML ベースの軽量プロトコル 単純さと拡張性に重点をおいている プログラミングモデルやアプリケーションのセマンティクスは定義しない 高い拡張性を持つ 二つの主なパート

More information

1 JEITA IT CORBA Web NEC Copyright(c) 2002, NEC Corp.

1 JEITA IT CORBA Web NEC Copyright(c) 2002, NEC Corp. 1 JEITA IT CORBA Web 200316 NEC (saji@cd.jp.nec.com 2 ORB CORBA CORBA Web 3 ORB IT 4 AP C AP-X client A AP-Y AP-X Windows2000 C++ client B Windows XP AP-Y Linux AP-Y ( BAP-Y OS Solaris 5 (A (A (B (B (C

More information

Jerry Held

Jerry Held The XML Continuum: From Dynamic Content to Web Services T A K E I T T O T H E N T H The XML Continuum: From Dynamic Content to Web Services XML Content SGML 1969 HTML 1992 Mobile ML s 1997 Time XML 1997

More information

WebLogic 6.0

WebLogic 6.0 BEA Web BEA Agenda BEA BEA Web Web Web BEA BEA 3,500 $819.8 million 990 32 92 10,000 E- BEA WebLogic E-Business Platform BEA WebLogic Server BEA WebLogic Integration BEA WebLogic Portal BEA Tuxedo / BEA

More information

r1.dvi

r1.dvi 2006 1 2006.10.6 ( 2 ( ) 1 2 1.5 3 ( ) Ruby Java Java Java ( Web Web http://lecture.ecc.u-tokyo.ac.jp/~kuno/is06/ / ( / @@@ ( 3 ) @@@ : ( ) @@@ (Q&A) ( ) 1 http://www.sodan.ecc.u-tokyo.ac.jp/cgi-bin/qbbs/view.cgi

More information

b2bintro.book

b2bintro.book BEAWebLogic Integration B2B Integration ªªªª 7.0 ªª ª ª : 2002 6 m Copyright 2002, BEA Systems, Inc. All Rights Reserved. ªª ª ªªª ª BEA Systems, Inc. ªª ª ª ª ª ª ª ª ªªª «BEA «vw ~ ª ªª v ª ª ª ª ªª

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

Q&A集

Q&A集 & ver.2 EWEB-3C-N080 PreSerV for Web MapDataManager & i 1... 1 1.1... 1 1.2... 2 1.3... 6 1.4 MDM. 7 1.5 ( )... 9 1.6 ( )...12 1.7...14 1.8...15 1.9...16 1.10...17 1.11...18 1.12 19 1.13...20 1.14...21

More information

A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2:

A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2: Java Jojo ( ) ( ) A B 1: Ex. MPICH-G2 C.f. NXProxy [Tanaka] 2: Java Jojo Jojo (1) :Globus GRAM ssh rsh GRAM ssh GRAM A rsh B Jojo (2) ( ) Jojo Java VM JavaRMI (Sun) Horb(ETL) ( ) JPVM,mpiJava etc. Send,

More information

1. COBOL COBOL COBOL COBOL 2

1. COBOL COBOL COBOL COBOL 2 2003-6-24 COBOL COBOL 2002 ISO/IEC JTC 1/SC 22/WG 4 (COBOL) INCITS J4 (COBOL) SC 22/COBOL WG COBOL JIS 1 1. COBOL 2. 2002 COBOL 3. 2002 COBOL 4. 5. COBOL 2 1. COBOL 3 COBOL COBOL Java C C++ 200 100 100

More information

9iAS_DEV.PDF

9iAS_DEV.PDF Oracle9i Application Server for Windows NT 1.0.2.0.0 2001.2.1 1 1 PL/SQL...3 1.1...3 1.2 PL/SQL Web Toolkit...5 1.3 Database Access Descriptor...6 1.4 PL/SQL...8 1.5 PL/SQL...10 1.6 PL/SQL...12 2 SERVLET...13

More information

"CAS を利用した Single Sign On 環境の構築"

CAS を利用した Single Sign On 環境の構築 CAS Single Sign On (Hisashi NAITO) naito@math.nagoya-u.ac.jp Graduate School of Mathematics, Nagoya University naito@math.nagoya-u.ac.jp, Oct. 19, 2005 Tohoku Univ. p. 1/40 Plan of Talk CAS CAS 2 CAS Single

More information

: : : TSTank 2

: : : TSTank 2 Java (8) 2008-05-20 Lesson6 Lesson5 Java 1 Lesson 6: TSTank1, TSTank2, TSTank3 java 2 car1 car2 Car car1 = new Car(); Car car2 = new Car(); car1.setcolor(red); car2.setcolor(blue); car2.changeengine(jet);

More information

Microsoft PowerPoint

Microsoft PowerPoint プレゼンテーション層の技術 情報ネットワーク論 I 門林雄基 アウトライン プレゼンテーション層の発達トレードオフプレゼンテーション層の価値 今日のプレゼンテーション層 ASN.1 ネットワーク管理 ディレクトリサービス等 XML コンポーネント統合等プレゼンテーション層の選択 プレゼンテーション層の発達 binary ASCII TLV ASN.1 XML 1 トレードオフ marshalling/unmarshalling

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

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

Gartner Day

Gartner Day J2EE 1 J2EE C AP 2 J2EE AP DD java *.class java *.class java *.class *.class DD EAR, WAR, JAR orionapplicationclient.xmweb.xmapplication.jar.xml orion- orion-ejb- ml Oracle Application Server 10g *.jsp

More information

intro.book

intro.book BEAWebLogic Platform BEA WebLogic Platform ªªªª 7.0 (Service Pack 1) ªª ª ª : 2002 9 m Copyright 2002 BEA Systems, Inc. All Rights Reserved. ªª ª ªªª ª BEA Systems, Inc. ªª ª ª ª ª ª ª ª ªªª ( BEA ) vw

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 11 2004-2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. FileMaker, Inc. FileMaker FileMaker,

More information

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

¥Í¥Ã¥È¥ï¡¼¥¯¥×¥í¥°¥é¥ß¥ó¥°ÆÃÏÀ 2 : TCP/IP : HTTP HTTP/2 1 / 22 httpget.txt: http.rb: ruby http get Java http ( ) HttpURLConnection 2 / 22 wireshark httpget.txt httpget cookie.txt ( ) telnet telnet localhost 80 GET /index.html HTTP/1.1

More information

IPSJ SIG Technical Report Vol.2015-CLE-16 No /5/23 RESTful Web API Web 1,2,3,4,a) 1,3,2,4 5,6 6 Wannous Muhammad 7,1,8 4,2,1 3,2,1 Maxima Web JS

IPSJ SIG Technical Report Vol.2015-CLE-16 No /5/23 RESTful Web API Web 1,2,3,4,a) 1,3,2,4 5,6 6 Wannous Muhammad 7,1,8 4,2,1 3,2,1 Maxima Web JS RESTful Web API Web 1,2,3,4,a) 1,3,2,4 5,6 6 Wannous Muhammad 7,1,8 4,2,1 3,2,1 Maxima Web JSONP Web API Maxima MathML JavaScript HTML5 Flot Web API RPC REST MathDox GUI MathJax Web 1. LMS (Learning Management

More information

rmi.book

rmi.book BEA WebLogic Server WebLogic RMI BEA WebLogic Server 6.1 : 2002 6 24 Copyright 2002 BEA Systems, Inc. All Rights Reserved. BEA Systems, Inc. BEA BEA BEA FAR 52.227-19 Commercial Computer Software-Restricted

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 tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp 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

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 12 2007 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. Bento FileMaker, Inc. FileMaker

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

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Web Web Web Web Infrastructure Provider Service Provider Web Web Web Web Services Web Web intelligent agents, market places, auctions,... XML! Web? E-Business Web - E-Business (SOAP) SOAP lookup (UDDI)

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

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 tutimura@mist.i.u-tokyo.ac.jp kaneko@ipl.t.u-tokyo.ac.jp http://www.misojiro.t.u-tokyo.ac.jp/ tutimura/sem3/ 2002 11 20 p.1/34 10/16 1. 10/23 2. 10/30 3. ( ) 11/ 6 4. UNIX + C socket 11/13 5. ( ) C 11/20

More information

製品、アイデアの販売企画

製品、アイデアの販売企画 第 4 回 J2EE カンファレンス JAX-RPC 2.0 仕様策定メンバが語る Web サービス技術 ~ JavaOne 2004 でベールを脱いだ J2EE 5.0 のコア技術 JAX-RPC 新仕様 ~ 2004 年 7 月 14 日 株式会社 NTT データ技術開発本部 木村利幸 / Java Community Process JSR-224

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

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

FileMaker Server 8 Advanced Web Publishing Installation Guide

FileMaker Server 8 Advanced Web Publishing Installation Guide FileMaker Server 8 Advanced! 13 2004-2005 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker, Inc. ScriptMaker FileMaker, Inc.

More information

Magic xpi / 2

Magic xpi / 2 ERP 3 Magic xpi 1 Magic xpi / 2 3 1983 Asseco Group NASDAQ: MGIC (1991) : 50 14 Europe & UK Japan North America Israel India Regional Sales Office Global R&D Center South Africa (MSJ) 1998 100 MSE 1999

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

K227 Java 2

K227 Java 2 1 K227 Java 2 3 4 5 6 Java 7 class Sample1 { public static void main (String args[]) { System.out.println( Java! ); } } 8 > javac Sample1.java 9 10 > java Sample1 Java 11 12 13 http://java.sun.com/j2se/1.5.0/ja/download.html

More information

IT講習会

IT講習会 2002 CAVIN SR 2002/10/12-14 2 2002/10/12-14 3 http://www.npa npa.go..go.jp/police_j.htm 2002/10/12-14 4 1 2 3 4 5 6 7 2002/10/12-14 5 2002/10/12-14 6 2002/10/12-14 7 1 2 3 4 5 6 7 2002/10/12-14 8 IT IT

More information

WebOTXマニュアル

WebOTXマニュアル WebOTX アプリケーション開発ガイド WebOTX アプリケーション開発ガイドバージョン : 8.1 版数 : 第 2 版リリース : 2008 年 9 月 Copyright (C) 1998-2008 NEC Corporation. All rights reserved. 2-1-1 目次 2. Java EE...3 2.1. Webサービス... 3 2.1.1. Webサービスを作成する...3

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

untitled

untitled OASIS WSDM hideharu.kato.mq@hitachi.com 2006.11.2 1. WSDM 2. WSDM 1.1 3. Apache Muse 4. WS-Management 5. WSDM WS-Management 2 1-1 WSDM IT IT Web WSDL, SOAP Web IT Web 3 1-2 WSDM Web Services Distributed

More information

interop.book

interop.book BEAWebLogic Integration BPM - Workshop ªªªª ªªªªª ª ªªªª 7.0 SP2 ªª ª ª : 2003 2 m Copyright 2003, BEA Systems, Inc. All Rights Reserved. ªª ª ªªª ª BEA Systems, Inc. ªª ª ª ª ª ª ª ª ªª ª ( BEA ) vw ~

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

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

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

untitled

untitled CAVIN SR 2002 2002/10/12-14 2 http://www.npa npa.go..go.jp/police_j.htm 2002/10/12-14 3 2002/10/12-14 4 1 2 3 4 5 6 7 2002/10/12-14 5 2002/10/12-14 6 1 1 2 3 4 5 6 7 2002/10/12-14 7 2002/10/12-14 8 IT

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

Java (9) 1 Lesson Java System.out.println() 1 Java API 1 Java Java 1

Java (9) 1 Lesson Java System.out.println() 1 Java API 1 Java Java 1 Java (9) 1 Lesson 7 2008-05-20 Java System.out.println() 1 Java API 1 Java Java 1 GUI 2 Java 3 1.1 5 3 1.0 10.0, 1.0, 0.5 5.0, 3.0, 0.3 4.0, 1.0, 0.6 1 2 4 3, ( 2 3 2 1.2 Java (stream) 4 1 a 5 (End of

More information

Webサービス本格活用のための設計ポイント

Webサービス本格活用のための設計ポイント The Web Services are a system which links up the scattered systems on the Internet, leveraging standardized technology such as SOAP, WSDL and UDDI. It is a general thought that in the future business enterprises

More information

untitled

untitled WS-Federation Federation PKI shosuz@microsoft.com Agenda WS-Federation Federation Active Directory ADFS) CWID2005 CWID2005- Windows Windows Kerberos 5/LDAP X.509/Smartcard/PKI VPN/802.1x/RADIUS SSPI/SPNEGO

More information

wide94.dvi

wide94.dvi 14 WWW 397 1 NIR-TF UUCP ftp telnet ( ) WIDE Networked Information Retrieval( NIR ) vat(visual Audio Tool) nv(netvedeo) CERN WWW(World Wide Web) WIDE ISODE WIDE project WWW WWW 399 400 1994 WIDE 1 WIDE

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

ex01.dvi

ex01.dvi ,. 0. 0.0. C () /******************************* * $Id: ex_0_0.c,v.2 2006-04-0 3:37:00+09 naito Exp $ * * 0. 0.0 *******************************/ #include int main(int argc, char **argv) double

More information

JAVA H13 OISA JAVA 1

JAVA H13 OISA JAVA 1 JAVA H13 OISA JAVA 1 ...3 JAR...4 2.1... 4 2.2... 4...5 3.1... 5 3.2... 6...7 4.1... 7 4.2... 7 4.3... 10 4.4...11 4.5... 12 4.6... 13 4.7... 14 4.8... 15 4.9... 16...18 5.1... 18 5.2...19 2 Java Java

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

XMLアクセス機能説明書

XMLアクセス機能説明書 SolarisTM Solaris Microsoft Windows NT Server network operating system Version 4.0 Windows NT Microsoft Windows 2000 Server operating systemmicrosoft Windows 2000 Advanced Server operating system Windows

More information

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( ) L09 IP (2017) 1 / 28

IP L09( Tue) : Time-stamp: Tue 14:52 JST hig TCP/IP. IP,,,. ( )   L09 IP (2017) 1 / 28 L09(2017-11-21 Tue) : Time-stamp: 2017-11-21 Tue 14:52 JST hig TCP/IP. IP,,,. http://hig3.net L09 (2017) 1 / 28 9, IP, - L09 (2017) 2 / 28 C (ex. ) 1 TCP/IP 2 3 ( ) ( L09 (2017) 3 / 28 50+5, ( )50+5. (

More information

TCP/IP Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.3 Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.4 2

TCP/IP Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.3 Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.4 2 Japan Registry Service Co., Ltd. JPRS matuura@jprs.co.jp Internet Week 2002 [2002/12/17] Japan Registry Service Co., Ltd. No.1 TCP IP DNS Windows Internet Week 2002 [2002/12/17] Japan Registry Service

More information

概要

概要 CHAPTER 1 Cisco IP Interoperability and Collaboration System(IPICS) の Application Programming Interface (API; アプリケーションプログラミングインターフェイス ) は Web サービスベースの API であり プログラマティックインターフェイスとカスタムアプリケーションを使用して Cisco

More information

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 13 2007-2013 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento FileMaker, Inc. FileMaker WebDirect Bento FileMaker,

More information

time.book

time.book BEAWebLogic Server WebLogic Time Services ªªªª ªªª ª BEA WebLogic Server ªªª ª ª 7.0 ªª ª ª u : 2002 6 28 m Copyright 2002, BEA Systems, Inc. All Rights Reserved. ÑÔÒÏÏÎÆÍËÔÓÕÎÖÊÂBEA Systems, Inc. Ê Ó

More information

WIDE 1

WIDE 1 WIDE 1 2 Web Web Web Web Web Web Web Web Web Web? Web Web Things to cover Web Web Web Web Caching Proxy 3 Things NOT covered / How to execute Perl Scripts as CGI binaries on Windows NT How to avoid access

More information

IT 2

IT 2 Knowledge-Works, Inc. Tokyo UML Caché IT 2 UML Caché Caché vocabulary UML Unified Modeling Language) UML UML / UML but UML UML UML DBMS / 2003 InternSystems DevCon Transformation Transformation on

More information

,,,,., C Java,,.,,.,., ,,.,, i

,,,,., C Java,,.,,.,., ,,.,, i 24 Development of the programming s learning tool for children be derived from maze 1130353 2013 3 1 ,,,,., C Java,,.,,.,., 1 6 1 2.,,.,, i Abstract Development of the programming s learning tool for children

More information

本講義のすすめかた n 情報検索 n Semantic Web コンピュータが Web ページの意味 (Semantic) を理解し 組み合わせて問題解決にあたれるようにするための方法論 n Web データベース n Web2.0 時代の Web 上の知識 n 授業資料 ( 火曜日か金曜日の午後には

本講義のすすめかた n 情報検索 n Semantic Web コンピュータが Web ページの意味 (Semantic) を理解し 組み合わせて問題解決にあたれるようにするための方法論 n Web データベース n Web2.0 時代の Web 上の知識 n 授業資料 ( 火曜日か金曜日の午後には 知識ベース特論第 6 回 Web データベース 吉岡真治 本講義のすすめかた n 情報検索 n Semantic Web コンピュータが Web ページの意味 (Semantic) を理解し 組み合わせて問題解決にあたれるようにするための方法論 n Web データベース n Web2.0 時代の Web 上の知識 n 授業資料 ( 火曜日か金曜日の午後には公開 ) http://www-kb.ist.hokudai.ac.jp/~yoshioka/kb/

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

DB2 secureway MQ Series Workflow Domino Doc MQ Series Integrator SOAP SOAP DB2 WebSphere MQ MQ MQ SOAP MQ SOAP WebSphere Business Integrator SOAP SOAP Messaging Service SOAP Calendar Service Directory

More information

(Eclipse\202\305\212w\202\324Java2\215\374.pdf)

(Eclipse\202\305\212w\202\324Java2\215\374.pdf) C H A P T E R 11 11-1 1 Sample9_4 package sample.sample11; public class Sample9_4 { 2 public static void main(string[] args) { int[] points = new int[30]; initializearray(points); double averagepoint =

More information

untitled

untitled FutureNet Microsoft Corporation Microsoft Windows Windows 95 Windows 98 Windows NT4.0 Windows 2000, Windows XP, Microsoft Internet Exproler (1) (2) (3) COM. (4) (5) ii ... 1 1.1... 1 1.2... 3 1.3... 6...

More information

Windows Web Windows Windows WinSock

Windows Web Windows Windows WinSock Windows kaneko@ipl.t.u-tokyo.ac.jp tutimura@mist.t.u-tokyo.ac.jp 2002 12 4 8 Windows Web Windows Windows WinSock UNIX Microsoft Windows Windows Windows Windows Windows.NET Windows 95 DOS Win3.1(Win16API)

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 2 3 /usr/local javalib xerces-2_6_2 xalan-2_6_0 4 XERCES_HOME=/usr/local/javalib/xerces-2_6_2 CLASSPATH=$XERCES_HOME/xmlParserAPIs.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesImpl.jar:$CLASSPATH CLASSPATH=$XERCES_HOME/xercesSamples.jar:$CLASSPATH

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

wide97.dvi

wide97.dvi 11 321 1 CA (Certication Authority) ( ) 1 3 CA S/MIME[104][105][106] SSL[107](Secure Sockets Layer), TLS[108](Transport Layer Security) WWW Netscape Microsoft Web SSL CA CA CA CA CA CA CA members only

More information

... 2 1 Servlet... 3 1.1... 3 1.2... 4 2 JSP... 6 2.1... 6 JSP... 6... 8 2.2... 9 - Servlet/JSP における 日 本 語 の 処 理 - 1

... 2 1 Servlet... 3 1.1... 3 1.2... 4 2 JSP... 6 2.1... 6 JSP... 6... 8 2.2... 9 - Servlet/JSP における 日 本 語 の 処 理 - 1 Servlet/JSP Creation Date: Oct 18, 2000 Last Update: Mar 29, 2001 Version: 1.1 ... 2 1 Servlet... 3 1.1... 3 1.2... 4 2 JSP... 6 2.1... 6 JSP... 6... 8 2.2... 9 - Servlet/JSP における 日 本 語 の 処 理 - 1 Servlet

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

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

untitled

untitled IBM i IBM AS/400 Power Systems 63.8% CPU 19,516 43,690 25,072 2002 POWER4 2000 SOI 2005 2004 POWER5 2007 POWER6 2008 IBM i 2004 eserver i5 2000 eserver iseries e 2006 System i5 Systems Agenda 2008 Power

More information

II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java

II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java II 1 p.1 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway Interface Web HTML Web Web CGI CGI CGI Perl, PHP C JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI Java Java JVM Java CGI

More information

untitled

untitled -1- JAX-RS JAX-RS Java API for RESTful Web Service JAX-RS REST Web API JAX-RS JCP JSR-311 JAX-RS https://jersey.dev.java.net/ Jersey JAX-RS RESTEasy 1RESTJAX-RSJerseyRESTEasy JersyRESTEasy JAX RS REST

More information

米国での最新事例 ー失敗しないための法則とはー

米国での最新事例 ー失敗しないための法則とはー Web fujioka563 oki.com E- BS:2000 CS:2003 Web Bluetooth Bluetooth VoiceXML) ITS ETA VoiceXML) XHTMLBasic / - / L SMIL) RosettaNet/ebXML VoiceXML) XML EC, EDI XML.ORG 200 11 11 PIE-WG XML Repository Sponsors

More information