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

Size: px
Start display at page:

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

Transcription

1 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 Description Language WSDL :Web Universal Description, Discovery and Integration UDDI :Web Java RMI Remote Method Invocation Oracle Net Oracle9i Database DCOM Microsoft Web Java PL/SQL Web Web WSDL SOAP UDDI 1 Web

2 1:SOAP WSDL UDDI Web Web J2EE CORBA DCOM Web XML XML CORBA IDL Web WSDL CORBA Internet Inter-ORB Protocol IIOP SOAP SOAP XML CORBA CosNaming Interoperable Object References IOR CORBA Web WSDL UDDI Web HTTP Web Web Web Web SOAP WSDL UDDI Oracle Web E-Business Suite ebxml Electronic Business XML RosettaNet Web Java Web Oracle Web J2EE Web Java Community Process JCP J2EE 1.4 Java Specification Request 109 JSR109 J2EE

3 Web J2EE RAD Web Web publishing consuming Web locating introspecting Web composing Web orchestrating Oracle9i JDeveloper Oracle9i JDeveloper Java Java IDE Windows Solaris Linux Java Oracle9i JDeveloper J2EE J2EE Web Oracle9i JDeveloper Web Web Oracle9i JDeveloper UML Web Web Web 2 Oracle9i JDeveloper Web 3 Web Trip Planning Service Trip Costing Service Trip Booking Service J2EE Web 2:Oracle9i JDeveloper Web

4 EJB Web Oracle9i JDeveloper Web Enterprise JavaBean Session EJB Bean Entity EJB Message-Driven Bean Enterprise JavaBean Java 2 Plan Trip 3 TravelSearchEJB Session EJB EJB findflight 3:Oracle9i JDeveloper EJB

5 1 findflight SQL TRAVEL J2EE Java public String[] findflight String origin,string dest throws RemoteException { String[] flights = new String[5]; String SQL = "select flight.air_code, flight.flight_number, fare.standard_price," + "to_char departure.departure_date, 'Mon DD, RRRR', " + "departure.departure_time " + "from flight_routes flight, fare_schedules fare,flight_departures departure " + "where origin_arp_code =? " + "and dest_arp_code =? and departure.flr_id = flight.route_id " + "and flight.route_id = fare.flr_id " + "and sysdate < departure.departure_date " + "order by departure.departure_date asc"; try { conn = getconnection dsname ; ps = conn.preparestatement SQL ; ps.setstring 1, origin ; ps.setstring 2, dest ; ps.executequery ; ResultSet rs = ps.getresultset ; int i =0; while rs.next && i < 5 { flights [i] = new String rs.getstring 1 +" "+ rs.getstring 2 + "/"+rs.getstring 4 + " / $"+rs.getstring 3 ; i++; catch SQLException e { throw new RemoteException e.getmessage ; finally { try { ps.close ; catch Exception e { try { conn.close ; catch Exception e { return flights; 1:findFlight EJB Java J2EE EJB Enterprise JavaBean JAR Web Web Java JAR Oracle9i JDeveloper J2EE & Oracle9iAS Containers for J2EE OC4J BEA Weblogic 4 Oracle9i JDeveloper 5 TravelSearchEJB Enterprise JavaBeans

6 4:Oracle9i JDeveloper J2EE 5:Oracle9i JDeveloper EJB

7 EJB Web Oracle9i JDeveloper Web Web EJB Web Oracle9i JDeveloper JCP J2EE 1.4 JSR 109 Oracle9i Application Server J2EE Web Apache SOAP Web TravelSearchEJB Web 6 9 6:Web 7: EJB URI Oracle9i Application Server Web J2EE 1.4/JSR 109 Apache SOAP 2.2

8 8:Web 9:Web WSDL Web Web Web Oracle9iAS Containers for J2EE OC4J J2EE web.xml WAR web.xml SOAP EJB SOAP 1 WAR 10 1 Oracle9iAS Web SOAP Enterprise JavaBean

9 10:Oracle9iAS Containers for J2EE Web Apache SOAP Oracle9i JDeveloper Web Web Apache SOAP Oracle9iAS Web Apache SOAP SOAP SOAP 11 TravelSearchEJB SOAP Apache SOAP 11: Apache SOAP Web

10 Web Web Enterprise JavaBean Web Web WSDL Web Web Oracle9i JDeveloper Web Web Service Description Language WSDL Oracle9i JDeveloper WSDL Web SOAP WSDL WSDL Web XMethods SalCentral Web Web WSDL URL Web UDDI Web UDDI WSDL Oracle9i Application Server UDDI Web TravelSearchEJB J2EE Oracle9i JDeveloper Web WSDL 12 Enterprise JavaBean WSDL 12:Oracle9i JDeveloper Web WSDL

11 Oracle9i Application Server Web WSDL Web WSDL WSDL TravelSearchEJB Web URL WSDL Oracle9i JDeveloper Web Web WSDL Oracle9i JDeveloper XML WSDL WSDL XML Schema 12 TravelSearchEJB Web WSDL Oracle9i JDeveloper XML XML WSDL 13 Oracle9i JDeveloper WSDL XML Schema 13: Web TravelSearchEJB Web Web Web WSDL SOAP Web Oracle9i JDeveloper WSDL Xmethods SalCentral WSDL Oracle9i Application Server UDDI WSDL Oracle9i JDeveloper WSDL Web 14

12 16 Web / 14:Web / 15: WSDL

13 16:Web Web / Java Web Web SOAP TravelSearchEJB EJB findflight Web Java SOAP Web Web SOAP Java 2 WSDL Java package ws; import oracle.soap.transport.http.oraclesoaphttpconnection; import java.net.url; import org.apache.soap.constants; import org.apache.soap.fault; import org.apache.soap.soapexception; import org.apache.soap.rpc.call; import org.apache.soap.rpc.parameter; import org.apache.soap.rpc.response; import java.util.vector; import java.util.properties; public class TravelSearchEJBStub { public String endpoint = " private OracleSOAPHTTPConnection m_httpconnection = null; public TravelSearchEJBStub { m_httpconnection = new OracleSOAPHTTPConnection ; public String[] findflight String origin, String dest throws Exception { String[] returnval = null; URL endpointurl = new URL endpoint ; Call call = new Call ; call.setsoaptransport m_httpconnection ; call.settargetobjecturi "urn:ws.travelsearchejb" ; call.setmethodname "findflight" ; call.setencodingstyleuri Constants.NS_URI_SOAP_ENC ; Vector params = new Vector ; params.addelement new Parameter "origin", String.class, origin, null ; params.addelement new Parameter "dest", String.class, dest, null ; call.setparams params ; Response response = call.invoke endpointurl, "" ; if!response.generatedfault

14 { Parameter result = response.getreturnvalue ; returnval = String[] result.getvalue ; else { Fault fault = response.getfault ; throw new SOAPException fault.getfaultcode, fault.getfaultstring ; return returnval; public void setmaintainsession boolean maintainsession { m_httpconnection.setmaintainsession maintainsession ; public boolean getmaintainsession { return m_httpconnection.getmaintainsession ; public void settransportproperties Properties props { m_httpconnection.setproperties props ; public Properties gettransportproperties { return m_httpconnection.getproperties ; 2:Oracle9i JDeveloper WSDL SOAP

15 Web 17 WSDL Oracle9i JDeveloper Web Oracle9i Application Server Web Oracle9i Application Server Web proxy_source Java TravelSearchEJB Web URL Java 2 Oracle9i JDeveloper 17:SOAP TravelSearchEJB Web JavaServer Page Enterprise JavaBean 18 TravelSearchEJB Web JSP Oracle9i JDeveloper

16 18:Oracle9i JDeveloper Web JavaServer Page Web JavaServer Page 19 Web Web Enterprise JavaBean SOAP HTTP Web Enterprise JavaBean Web Enterprise JavaBean J2EE IDE

17 19:Web JavaServer Page Web 2 Trip Planning Enterprise Java Bean TravelSearchEJB Web Web Trip Costing Trip Costing Web Web XMethods Web

18 20:Web Xmethods 21: WSDL

19 Web XMethods WSDL Web Oracle9i JDeveloper Web / Web 22: WSDL URL 23:Web WSDL

20 TravelSearchEJB Web JavaServer Page J2EE 23 Web JavaServer Page 24 TravelSearchEJB Web Web JavaServer Page 24: Web Web JavaServer Page 25: Web

21 Web Web Oracle9i JDeveloper J2EE EJB Business Components for Java BC4J PL/SQL Web Business Components for Java BC4J Oracle J2EE J2EE / XML JSP Swing Enterprise JavaBeans BC4J Web Oracle PL/SQL Web PL/SQL Oracle9i JDeveloper PL/SQL PL/SQL Web Oracle9i JDeveloper Java PL/SQL JPublisher Java Oracle9i JDeveloper Web PL/SQL Web Oracle9i JDeveloper Web UML Web Java Web Web Oracle9i JDeveloper Java XML PL/SQL Web Web Oracle9i JDeveloper Web Web Java IDE 1 Oracle9i JDeveloper Web Oracle Corporation World Headquarters 500 Oracle Parkway Redwood Shores, CA U.S.A : : : Oracle Copyright 2000 Oracle Corporation All rights reserved.

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

untitled

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

More information

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

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

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

More information

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

BC4J...4 BC4J Association JSP BC4J JSP OC4J

BC4J...4 BC4J Association JSP BC4J JSP OC4J lê~åäévá=gaéîéäçééê= 9.0.3/9.0.4 BC4J Creation Date: Oct 08, 2003 Last Update: Feb 27, 2004 Version 1.0 ...3... 3 BC4J...4 BC4J...4... 4... 5... 6...7... 8... 9 Association... 13... 15... 20... 22... 25

More information

Oracle9i JDeveloper R9.0.3 チュートリアル

Oracle9i JDeveloper R9.0.3 チュートリアル Oracle9i JDeveloper 9.0.3 JavaServer Pages Creation Date: Jan. 27, 03 Last Update: Feb. 13, 03 Version: 1.0 ... 2... 2... 2 JDeveloper JSP... 3... 4 JSP... 5 JSP... 6... 7...10 JDeveloper... 12 TLD...

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

Oracle Application Server 10g (9.0.4): Manually Managed Cluster

Oracle Application Server 10g (9.0.4): Manually Managed Cluster Oracle Application Server 10g 9.0.4 : 2004 6 Oracle Application Server 10g 9.0.4 : Oracle Application Server... 3... 3 Oracle Application Server... 3... 3... 4 Oracle Application Server... 6 Oracle Application

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

B2-Servlet-0112.PDF

B2-Servlet-0112.PDF B-2 Servlet/JSP Agenda J2EE Oracle8i J2EE Java Servlet JavaServer Pages PDA ( J2EE Java2 Enterprise Edition API API J2SE JSP Servlets RMI/IIOP EJB JNDI JTA JDBC JMS JavaMail JAF Java2 Standard Edition

More information

組織変更ライブラリ

組織変更ライブラリ 2003 6 1...1 2...2 3...4 3.1...4 3.2...5 3.3...6 3.4...6 4...7 4.1...7 4.2...9 4.3...9 4.4...10 4.5...10 5 Web...11 5.1 WebUI...11 5.2Oracle 9iFS WebUI...12 6Oracle9i AS...13 6.1OiD...13 6.2 SSO...13 7...14

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

Oracle Application Server 10g Release 3(10.1.3)- アジャイル・エンタープライズ(俊敏な企業)のためのデータ・アクセス

Oracle Application Server 10g Release 3(10.1.3)- アジャイル・エンタープライズ(俊敏な企業)のためのデータ・アクセス Oracle Application Server 10g Release 3 10.1.3 2005 8 Oracle Application Server 10g Release 3 10.1.3... 3 Oracle Application Server 10g Release 3 10.1.3 3... 4... 4 RAC... 6 JDBC... 7 JMX... 8... 9 Oracle...

More information

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

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

More information

Microsoft Word - migrateto10g2.doc

Microsoft Word - migrateto10g2.doc Oracle JDeveloper 10g 9.0.5/10.1.2 JDeveloper Creation Date: Feb. 9, 05 Last Update: Jul. 27, 05 Version: 1.1 = ... 4... 4 JDeveloper... 5... 5 Web... 6... 7... 8... 8 JDeveloper... 10... 10... 11... 19...

More information

Oracle Application Server 10gリリース2( )Oracle HTTP Serverの概要

Oracle Application Server 10gリリース2( )Oracle HTTP Serverの概要 Oracle Application Server 10g 2 10.1.2.0.2 Oracle HTTP Server 2005 10 Oracle Application Server 10g Oracle HTTP Server... 3 OHS:... 4 Web... 4... 4 OHS: Web... 5... 5 Oracle HTTP Server... 5... 7 OHS...

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

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

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

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

More information

Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21

Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21 Oracle Web Conferencing Oracle Collaboration Suite 2 (9.0.4) Creation Date: May 14, 2003 Last Update: Jan 21, 2005 Version: 1.21 ... 2... 3...3...4...5 Oracle9i Platform...10 Oracle Collaboration Suite...12...15...23

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

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca

Oracle Locator Oracle Database 10g Standard Edition Standard Edition One Oracle Database 10g Release 1 Oracle Locator : Enterprise Edition Oracle Loca ORACLE SPATIAL OPTION ORACLE LOCATOR Oracle Database 10g Oracle Database 10g Release 2 Oracle Locator : Oracle Spatial Oracle Locator Oracle Locator Oracle Database 10g Standard Edition EPSG Standard Edition

More information

ユニット・テストの概要

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

More information

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

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

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

Oracle Application Server 10g( )インストール手順書

Oracle Application Server 10g( )インストール手順書 Oracle Application Server 10g (10.1.2) for Microsoft Windows J2EE Oracle Application Server 10g (10.1.2) for Microsoft Windows J2EE and Web Cache...2...3...3...4...6...6...6 OS...9...10...12...13...25...25

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

Oracle Application Server 10g R3 新機能概要

Oracle Application Server 10g R3 新機能概要 Oracle Application Server 10g R3 2006 1 Oracle Application Server 10g R3 1.0... 4 2.0 : J2EE... 5 2.1 : Java Server Pages JavaServer Faces... 6 2.2 : Enterprise Java Beans... 7 2.2.1 EJB 2.1... 7 2.2.2

More information

WebServices4pub.PDF

WebServices4pub.PDF 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 Agenda(2) III. Web 1. Microsoft:.NET 2. Apache-SOAP 3. IBM: Web

More information

FY01H2_SOHO_iAS

FY01H2_SOHO_iAS Oracle9i Application Server Internet Developer Suite Agenda 9iAS PL/SQL Java2 Cache Portal Internet Developer Suite Designer Developer JDeveloper DEMO Oracle 9iAS Web Cache Oracle HTTP Server mod_jserv

More information

Microsoft Word - 430_15_Developing_Stored_Procedure.doc

Microsoft Word - 430_15_Developing_Stored_Procedure.doc Java Oracle 1998 11 Java 3 Java Web GUI Java Java Java Oracle Java Oracle8i Oracle / Oracle Java Virtual Machine VM CORBA Enterprise JavaBeans Oracle Java Java Java Oracle Oracle Java Virtual Machine Oracle

More information

Oracle Application Server 10g(9

Oracle Application Server 10g(9 Oracle Application Server 10g (9.0.4) for Microsoft Windows J2EE Oracle Application Server 10g (9.0.4) for Microsoft Windows J2EE and Web Cache...2...3...3...4...6...6...6 OS...9...10...12...13...24...24

More information

Oracle Database 10gのOLAP Option

Oracle Database 10gのOLAP Option Oracle Database 10g OLAP Option OLAP Option 2005 3 Oracle Database 10g OLAP Option... 3 Oracle Business Intelligence... 4... 4... 5 Oracle Business Intelligence Beans... 5 OracleBI Discoverer... 6 OracleBI

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

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

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

Oracle Application Server10g (9.0.4) - OracleAS PortalによるOracleAS Web Cacheの配置

Oracle Application Server10g (9.0.4) - OracleAS PortalによるOracleAS Web Cacheの配置 Oracle Application Server 10g 9.0.4 - OracleAS Portal OracleAS Web Cache 2004 6 Oracle Application Server 10g 9.0.4 - OracleAS Portal OracleAS Web Cache... 3... 3 1... 4 2... 5... 5... 6 OracleAS Web Cache...

More information

日立評論 2016年9月号:金融イノベーションを実現する新たなエンタープライズアプリケーション開発への取り組み

日立評論 2016年9月号:金融イノベーションを実現する新たなエンタープライズアプリケーション開発への取り組み デジタルが導く金融イノベーション -FinTech & Beyond- 金融イノベーションを実現する新たなエンタープライズアプリケーション開発への取り組み 斎藤岳 櫻澤秀樹 中村知倫 武藤邦弘 Saito Gaku Sakurazawa Hideki Nakamura Tomonori Muto Kunihiro 金融業界に代表される大規模エンタープライズアプリケーション開発市場においては, 長期にわたって

More information

Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005との技術的比較

Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005との技術的比較 Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005 2005 9 Oracle Real Application Clusters 10g Release 2: Microsoft SQL Server 2005... 3 ORACLE REAL APPLICATION CLUSTERS... 4 SQLSERVER

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

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone Oracle Application Server 10g Release 2 (10.1.2) for Microsoft Windows Business Intelligence Standalone

More information

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

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

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Java J2EE Spring Spring Dependency Injection AOP Java J2EE 2 4 Application Java Enterprise API 5 6 mod_jk2 AJP13 Coyote/JK2 Connector Session Apache2 Tomcat5-a AJP13 Coyote/JK2 Connector Session Tomcat5-b

More information

Oracle Database 10gのOracle Data Guard

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

More information

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

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

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

More information

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

<Documents Title Here>

<Documents Title Here> Oracle Sensor Edge Server 10g (10.1.3) Creation Date: Apr 05, 2006 Version: 1.00 Document Control Author Hisashi Onoda Hirotaka Miura Hideki Ito - Oracle Sensor Edge Server 10g (10.1.3) - 2 Document Control...2

More information

Oracle9iAS Containers for J2EEチュートリアル

Oracle9iAS Containers for J2EEチュートリアル Oracle9iAS Containers for J2EE Servlet/JSP ...3...3 OC4J...4 OC4J...4...5 OC4J...6 OC4J...6 OC4J...7 Servlet/JSP...8 Servlet...8 Servlet...8 JSP...8 Servlet/JSP...10 Web...10 Servlet/JSP...11 Servlet/JSP...12

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

Oracle Service-Oriented Architecture Suite

Oracle Service-Oriented Architecture Suite Oracle Service-Oriented Architecture Suite Oracle SOA Suite SOA 1 IT IT SOASOA Oracle Fusion Architecture SOA SOA SOA Oracle Fusion Architecture Oracle SOA Suite Oracle SOA Suite 1 ISE 2 Enterprise Service

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 Java EE EJB SOA 2007 11 2 Java Java Java (JJUG) Java http://www.java-users.jp/ Java JJUG 2007 Fall 11 6 ( ) http://www.javausers.jp/contents/events/ccc2007fall/ EJB SOA EJB SOA IT EoD IT X-Over Development

More information

untitled

untitled 2003 8 ... 3... 4 360... 5... 6... 6... 7 OracleAS Personalization... 8 OracleAS Personalization... 9... 12... 14... 17 Web 1 E-Business E-Business E-Business 360 E-Business Web MySite.com MySite.com E-Business

More information

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視

Oracle DatabaseとIBM DB2 UDBの技術的比較: パフォーマンスを重視 Oracle Database IBM DB2 UDB : 2005 9 Oracle Database IBM DB2 UDB :... 3... 4 Oracle Database Oracle Database IBM DB2... 4... 5... 5... 6... 7... 9... 10... 10 Oracle Database 10g Oracle Real Application

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

データベース認識Webサービス

データベース認識Webサービス Olivier Le Diouris, Oracle Corporation PL/SQL PL/SQL SOAP SOAP SOAP Web Java Java SOAP Perl Perl PL/SQL SOAP PL/SQL 1. URL 2. SOAP 1. 2. 3. 1 JSR 109 J2EE JSR 109 J2EE J2EE PL/SQL Java 2 3 JPublisher PL/SQL

More information

はじめに

はじめに 1 Java Java J Java API 2004 1 JavaServer Faces JavaServer Faces JavaServer Faces JSF Java API JCP Java Community Process 127 JSR-127Java Specification Request 2004 3 JSF 1.0 5 JSF 1.1 JSF 1.1 JSF 1 Overview

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

KWCR3.0 instration

KWCR3.0 instration KeyWeb Creator R3.0 R3.0 for MS-Windows 2005 10 B25586-01 Oracle Oracle Oracle Corporation Copyright 2005, Oracle Corporation All Right Reserved KeyWeb Creator R3.0 2005 10 Copyright 1997-2005 KeyWeb Creator

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

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

日本語タイトルを入力

日本語タイトルを入力 Oracle Enterprise Manager 10g Grid Control 2005 8 Enterprise Manager Grid Control Oracle Enterprise Manager 10g Grid Control Oracle Oracle Grid 1 Grid Control 2 1 Grid Control 2 Grid Control Oracle Grid

More information

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

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

More information

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved.

Windows Oracle -Web - Copyright Oracle Corporation Japan, All rights reserved. Windows Oracle -Web - Copyright Oracle Corporation Japan, 2004. All rights reserved. Agenda Oracle Windows Windows Oracle 1 / Active Directory/Enterprise User Security 1-1 Windows 1-2 Kerberos 1-3 Enterprise

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション Oracle Application Server 10g (10.1.2) Oracle Application Server10g(10.1.2) : data-sources.xml WAR (Web ) : orion-web.xml JAR (Enterprise JavaBeans) : orion-ejb-jar.xml EAR ( ) : orion-application.xml

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

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

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

More information

ESA_UI_1110.PDF

ESA_UI_1110.PDF ESA SAP SAP SAP Web AS SAP SAP : ESA ESA : CAF ESA SAP SAP SAP : ESA ESA : CAF ESA SAP SAP SAP Office???? SAP Japan Co., Ltd. 2004, Title of Presentation / Speaker Name / 4 SAP SAP : ESA ESA : CAF ESA

More information

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

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

More information

Microsoft Word - J doc

Microsoft Word - J doc Oracle Application Server for HP-UX 4.0.8.2 2000 11 : J02449-01 : Oracle Application Server Release Notes for HP 9000 Servers and Workstations A86087-01 Oracle Application Server for HP-UX 4.0.8.2 Oracle

More information

<Documents Title Here>

<Documents Title Here> Oracle Application Server 10g(9.0.4) for Microsoft Windows Discoverer Oracle Application Server 10g(9.0.4) for Microsoft Windows Discoverer Oracle Application Server 10g(9.0.4) Oracle Application Server(OracleAS)

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

橡CoreTechDS_Overview.PDF

橡CoreTechDS_Overview.PDF Oracle Application Server 10g Oracle Developer Suite 10g Page 1 1 Oracle Developer Suite 10g Oracle Forms Oracle Reports Oracle Designer Oracle Software Configuration Manager Oracle JDeveloper JDeveloper

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

new_logo.eps

new_logo.eps Oracle Enterprise Manager 2.0.4 :A62835-1 Oracle Enterprise Manager 2.0.4 :A62835-1 1 :1999 4 1 :Oracle Enterprise Manager Installation, Release 2.0.4 :A67818-01 Copyright 1999, Oracle Corporation. All

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

Oracle9i Reportsのチューニング

Oracle9i Reportsのチューニング Oracle9i Reports 2002 5 Oracle9i Reports...3...4...4...9...14...18 Oracle9i Forms...19...19...20 A...22 B...24 Oracle9i Reports 2 Oracle9i Reports Oracle9i Reports Oracle9i Oracle9i Reports 3 Oracle9i

More information

Linux上のOracle Real Application Clustersの記憶領域オプション

Linux上のOracle Real Application Clustersの記憶領域オプション Linux Oracle Real Application Clusters 2005 1 RAC... 3... 3 Automatic Storage Management ASM... 4 ASM Oracle... 5 ASM... 6 Oracle Cluster File System... 6 OCFS Oracle... 7... 7... 7 RAW... 7 RAW Oracle...

More information

Spring Framework Web Web Web DB AOP DI Java EE 3 Web WebMVC Web Java 4 DB H2 Database Java H2 Database http://www.h2database.com/ Version 1.0 Zip 5 H2 > cd $H2_HOME/bin > java cp h2.jar org.h2.tools.server

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

Microsoft Word - J-jdev_dba_db_developers.doc

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

More information

JB_weblogic_guide.indd

JB_weblogic_guide.indd WebSphere JBoss Enterprise Application Platform WebSphere JBoss Enterprise Application Platform www.jp.redhat.com/jboss 1. 3 3 4 2. 4 4 5 7 9 14 19 3. 20 20 I 21 II 21 III 23 IV 25 V 26 4. 26 26 27 30

More information

Oracle SOA Suite 11gコンポジットに対するSOASchedulerの構成

Oracle SOA Suite 11gコンポジットに対するSOASchedulerの構成 Oracle SOA Suite 11g コンポジットに対する SOAScheduler の構成 オラクル Senior Solution Architect Robert Baumgartner 2010 年 11 月 Oracle SOA Suite 11g コンポジットに対する SOAScheduler の構成 1 前提条件 https://soasamples.samplecode.oracle.com/

More information

Warehouse Builderにおける予測分析の使用

Warehouse Builderにおける予測分析の使用 Warehouse Builder Oracle 2006 3 Warehouse Builder... 3 ETL... 4 DMBS_PREDICTIVE_ANALYTICS... 4... 5 1... 5 2... 5 3... 5... 6 SQL PREDICT... 7... 9 1... 9 2... 9 3... 9... 10 PL/SQL... 11... 12... 12...

More information

Oracle Internet Application Server 8i 概要 , リリース 1.0

Oracle Internet Application Server 8i 概要 , リリース 1.0 Oracle Internet Application Server 8i 1.0 2000 9 : J02071-01 Oracle Internet Application Server 8i, 1.0 : J02071-01 Oracle Internet Application Server 8i Overview Guide, Release 1.0.1 A83707-02 Janice

More information

橡CoreTechAS_OC4J.PDF

橡CoreTechAS_OC4J.PDF Page 1 1 2 Oracle Application Server 10g (9.0.4) J2EE OHS - OC4J - 3rd Party Page 2 2 Oracle Application Server 10 g J2EE Oracle Application Server 10 g OHS OC4J HTTP/HTTPS mod_oc4j AJP/SSL HTTP EJB HTTP

More information

Microsoft Word - J doc

Microsoft Word - J doc Oracle Internet Application Server 8i for Sun SPARC Solaris 1.0 2000 9 : J02153-01 : Oracle Internet Application Server 8i Release Notes Release 1.0 A83588-01 Oracle Oracle Oracle Corporation Oracle Internet

More information

Oracle Forms Services R6i

Oracle Forms Services R6i Creation Date: Jul 04, 2001 Last Update: Jul 31, 2001 Version: 1.0 0 0... 1 1...3 1.1... 3 1.2... 3 1.3... 3 2...4 2.1 C/S... 4 2.2 WEB... 5 2.3 WEB... 5 2.4 JAVABEAN... 6 3 JAVABEAN...7 3.1... 7 3.2 JDEVELOPER...

More information

橡CoreTechAS_OverView.PDF

橡CoreTechAS_OverView.PDF Page 1 1 Page 2 2 J2EE, & Web Services Page 3 3 J2EE&Web Services racle HTTP Server racleas Container for J2EE racleas TopLink racleas Web Services racle Content Management SDK racle XML Developer Kit

More information

Oracle Application Server Wireless:企業のモバイル化

Oracle Application Server Wireless:企業のモバイル化 Oracle Application Server Wireless: 2003 8 Oracle Application Server Wireless:... 3... 4... 4... 5... 7 : M-Business... 8... 8 OracleAS Wireless:... 10 OracleAS Wireless:... 12 OracleAS Wireless:... 13...

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

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成

Oracle Database 10gによる高パフォーマンス・エンタープライズXMLアプリケーションの作成 Oracle Database 10g XML 2005 9 Oracle Database 10g XML TU UT... 3 TU UT... 3 TUOracle XML Developer's Kit 10gUT... 4 TU UT... 5 TU UT... 5 TU UT... 5 TUXML /XSL UT... 5 TUXML UT... 6 TUXML Class GeneratorUT...

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 13 ODBC JDBC 2004-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

PowerPoint Presentation

PowerPoint Presentation UML 2004 7 9 10 ... OOP UML 10 Copyright 2004 Akira HIRASAWA all rights reserved. 2 1. 2. 3. 4. UML 5. Copyright 2004 Akira HIRASAWA all rights reserved. 3 1..... Copyright 2004 Akira HIRASAWA all rights

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

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

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

More information

Oracle Application Server 10g(9

Oracle Application Server 10g(9 Oracle Application Server 10g(10.1.2) for Microsoft Windows Infrastructure Oracle Application Server 10g(10.1.2) for Microsoft Windows Infrastructure...2...3...4...5...7...7...7 OS...10...12...13...15...29...29

More information