PowerPoint Presentation

Size: px
Start display at page:

Download "PowerPoint Presentation"

Transcription

1 J2EE

2 Agenda J2EE EJB J2EE Web Grid J2EE

3 1. J2EE

4 J2EE Mark Hapner

5 J2EE Sun JCP Java Community Process Java Java Java Enterprise JavaBean API

6 J2EE Enterprise Java API Enterprise JavaBeans(EJB) Java J2EE = Java TM 2 SDK, Enterprise Edition

7 J2EE J2EE 1.2 J2EE 1.3 J2EE 1.4

8 J2EE / Web WWW

9 NCSA What s New

10 K 3 800K K 1993/ /06

11 Web Browser Web Server GET/POST Response Web Browser HTTP Web Server

12 J2EE J2EE Web Web Server EJB Web Browser Servlet/JSP DataBase

13 Web Web SOAP Message GET/POST Web Server HTTP Response SOAP Message

14 n-tier

15 IBM 9672 IBM360 ASR-33

16 -Tier

17 Sun3/ IBM PC ' VAX-11/780(1977)

18 2-Tier

19 3-Tier J2EE Web EIS Web Browser applet Application client JSP Servlet EJB DB J2EE

20 n-tier J2EE Web EIS Web Browser applet Application client Web JSP Servlet Entity Bean Session Bean Message Driven Bean DB J2EE

21

22 -Tier

23 2-Tier

24 3-Tier

25 Enterprise Java Bean Application Server

26 Component Container Component Creation / Component Provider Assembly / Application Assenbler Deployment / Deployer Container

27 public class BankBean implements SessionBean { public void transfertosaving(double amount) { checkingbalance -= amount; savingbalance += amount; try { updatechecking(checkingbalance); if (checkingbalance < 0.00) { context.setrollbackonly(); throw new InsufficientBalanceException(); } updatesaving(savingbalance); } catch (SQLException ex) { throw new EJBException ( ); } }

28 Enterprise Java Bean Stateless Session Bean Statefull Session Bean Entity Bean J2EE1.2 Message Driven Bean Stateless Session Bean with Web Service Endpoint J2EE1.3 J2EE1.4

29 J2EE Design Pattern Front Controller Intercepting Filter Composite View View Helper Dispatcher View Business Delegate Session Façade Data Access Object Service Locator Transfer Object Assembler Value List Handler Composite Entry Transfer Object Service Activator.

30

31

32

33

34

35

36

37

38 (1) Enterprise JavaBeans Technology JDBC API Java Servlet Technology JavaServer Pages (JSP) Technology Java Message Service (JMS) Java Transaction API (JTA)

39 (2) JavaMail Technology JavaBeans Activation Framework Java API for XML Processing (JAXP) J2EE Connector Architecture Java Authentication and Authorization Service (JAAS)

40 (3) Web Service Java APIs for XML based RPC(JAX-RPC Java APIs for XML Messaging(JAXM Java APIs for XML Registry (JAXR) Java Server Faces...

41 J2EE Container EJB J2EE Container EJB EJB : Entity Bean J2EE1.3 EJB2.0 J2EE1.3 EJB2.0 CMP J2EE1.3 JMS

42 J2EE Container

43 J2EE Home Remote Home EJB Remote

44 EJB Remote transfertosaving public class BankBean implements SessionBean { public void transfertosaving(double amount) {... Home EJB create

45

46 Remote Bank.java public interface Bank extends EJBObject { public void transfertosaving(double amount) throws RemoteException, InsufficientBalanceException;... Home BankHome.java EJB BankEJB.java public class BankBean implements SessionBean { public void transfertosaving(double amount) {... public interface BankHome extends EJBHome { public Bank create(string id) throws RemoteException, CreateException; }

47 EJB Remote public interface Hello extends javax.ejb.ejbobject { } public String sayhello() throws java.rmi.remoteexception;

48 EJB Home Remote public interface HelloHome extends javax.ejb.ejbhome { public Hello create() throws java.rmi.remoteexception, javax.ejb.createexception; }

49 EJB EJB public class HelloEJB implements javax.ejb.sessionbean { public String sayhello() { return "Hello World!"; } public void ejbcreate() {} public void setsessioncontext(sessioncontext sc) {} public void ejbremove() {}.. }

50 1. JNDI Home 2. Home create 3. create remote 4. remote invoke

51 EJB Client J2EE EJB lookup create invoke EJB Client JNDI Home Interface Remote interface EJB Class

52

53 EJB Remote Remote

54 public interface HelloHome extends javax.ejb.ejbhome { } Home public Hello create() throws java.rmi.remoteexception,.; RMI/IIOP public class HelloHomeImpl extends PortableRemoteObject implements HelloHome { public Hello create() throws RemoteException,.. { return (Hello).. ; } }

55 public interface Hello extends javax.ejb.ejbobject { } public String sayhello() throws java.rmi.remoteexception; RMI/IIOP Remote public class HelloEJB_EJBObjectImpl extends PortableRemoteObject implements Hello { public String sayhello() throws RemoteException { return Hello World! ; } EJB? }

56 EJB EJB Remote Remote sayhello EJB Remote EJB

57 EJB public class HelloEJB implements javax.ejb.sessionbean { public String sayhello() { return "Hello World!"; } javax.ejb.sessionbean Remote public interface SessionBean extends EnterpriseBean {... } public interface EnterpriseBean extends Serializable {... }

58 EJB Remote sayhello EJB sayhello sayhello EJB Remote

59 public String sayhello() throws RemoteException { // Remote... // HelloEJB helloejb = (HelloEJB)... ;... // ejbload container.preinvoke(...); // String s = helloejb.sayhello(); // ejbstore container.postinvoke(...);... EJB return s;

60 J2EE CORBA : IDL J2EE : Java Interface JAX-RPC : WSDL / Java Interface GT3 OGSI : GWSDL Transaction Database Life Cycle

61 CORBA Container

62 EJB : Entity Bean

63 Entity Bean Entity Bean

64 pk1 a1 b1 c1 pk1 a1 b1 c1

65 Entity Bean

66 EJB: create SQL INSERT

67 create ejbcreate Entity Bean pk1 a1 b1 c1 pk1 a1 b1 c1

68 ejbload ejbstore ejbload ejbstore SQL: SELECT SQL: UPDATE

69 Entity Bean ejbload pk1 a1 b1 c1 pk1 pk2 a1 a2 b1 b2 c1 c2 primarykey= pk1 pk3 a3 b3 c3

70 Entity Bean ejbstore pk1 x1 y1 z1 pk1 pk2 x1 a2 y1 b2 z1 c2 primarykey= pk1 pk3 a3 b3 c3

71 ejbcreate ejbremove ejbload ejbstore ejbfindbyprimarykey insert delete select update select

72 ejbcreate insert ejbremove delete ejbload select ejbstore update ejbfindbyprimarykey select BMP

73 J2EE1.3

74 J2EE1.3 EJB2.0 CMP (Container Managed Persistency)

75 J2EE1.3 Abstract Class Abstrct Accessor Persistent cmp abstract setter/getter Relation cmr abstract setter/getter

76 J2EE1.3 Finder Local)Home "find" Select EntityBean "ejbselect" abstract EJB-QL Deploy Deployment Descriptor Home Bean static method

77 J2EE1.2 J2EE1.3 EntityBean abstract Class Local cmp setter/getter abstract SQL cmr abstract setter/getter Finder Select EJB-QL Deploy

78

79 (LeagueBeanTable) leagueid name sport (TeamBeanTable) teamid name city (PlayerBeanTable) playerid name position salary

80 (LeagueBeanTable) 1 : m (TeamBeanTable) m : n (PlayerBeanTable)

81 CMP Field public abstract class PlayerBean implements EntityBean { // cmp Setter/Getter // ID (playerid) public abstract String getplayerid(); public abstract void setplayerid(string id); // (name) CMP Field public abstract String getname(); public abstract void setname(string name); // (position) public abstract String getposition(); public abstract void setposition(string position); // (salary) public abstract double getsalary(); public abstract void setsalary(double salary); playerid name position salary

82 CMR Field } // cmr teams // Setter/Getter // // cmr teams EJB-QL IN operator IN(p.teams) // CMR Field public abstract Collection getteams(); public abstract void setteams(collection teams); // public abstract Collection ejbselectleagues(localplayer player) throws FinderException; public abstract Collection ejbselectsports(localplayer player) throws FinderException;... teamid name city

83 JMS J2EE1.3

84

85 3. J2EE Web Grid J2EE1.4 Web SOAP-RPC JAX-RPC Endpoint Session Beans J2EE1.4 Web J2EE1.4 EoD: Java Server Faces J2EE1.4 JAIN SLEE Grid Web Grid Web -- OGSI WS-RF --

86 J2EE Web J2EE1.4

87 Web J2EE Web EJB

88 JAX-RPC = RMI / SOAP Rahul Sharma

89 JAX-RPC Java WSDL Java XML Java Web Java Remote Interface WSDL WSDL Java

90 JAX-RPC Java Remote Interface WSDL WSDL Java Java Interface porttype binding service

91 porttype binding service porttype name + ".java" binding name + Stub.java binding name + "Impl.java" service name + ".java" service name + "Locator.java" Hello.java HelloBindingStub.java HelloBindingImpl.java HelloWorld.java HelloWorldLocator.java porttype porttype operation name sayhello binding binding operation name service "get" + service port name "get" + service port name gethello

92 Hello.java public interface Hello extends java.rmi.remote { public String sayhello(string name) throws java.rmi.remoteexception; } HelloImpl.java public class HelloImpl implements Hello{ public String sayhello(string name) throws java.rmi.remoteexception { return "ServiceImpl was re-defined by " + name + "!" ; } }

93 HelloService.java public interface HelloService extends javax.xml.rpc.service { public String gethelloaddress(); public Hello gethello() throws javax.xml.rpc.serviceexception; public Hello gethello(java.net.url portaddress) throws javax.xml.rpc.serviceexception; } WSDL service Element <service name="helloservice"> <port name="hello" binding="tns:hellobinding"> <soap:address location=" /> </port> </service>

94 HelloServiceLocator.java public class HelloServiceLocator extends org.apache.axis.client.service } implements HelloService {... public Hello gethello() throws javax.xml.rpc.serviceexception {... }... public Hello gethello(java.net.url portaddress) throws javax.xml.rpc.serviceexception {... }...

95 Main.java public class Main { public static void main (String[] args) throws Exception { Hello port = new HelloServiceLocator().getHello(); try { String str = ((HelloStub) port).sayhello("fujio"); System.out.println( str ); } catch (java.rmi.remoteexception re) { System.err.println("Remote Exception caught: " + re ); } } }

96 getport invoke WS Client Stub Service Interface Service Locator Service Endpoint Interface Service Impl. Class Web

97 Endpoint Session Beans (EJB2.1) (Local)Home EJB(Local)Object Local/Remote Service Service Remote Endpoint Endpoint

98 Endpoint Session Beans (EJB2.1) public Interface BookPriceService extends javax.xml.rpc.service{ public BookPrice getbookprice( ) throws RemoteException; } public interface BookPrice extends javax.rmi.remote { public String getbookprice(string isbn) throws javax.rmi.remoteexception; } public class BookPriceWS implements BookPrice, javax.ejb.sessionbean { public float getbookprice(string isbn){.}. }

99 Session Beans public Interface HelloHome extends javax.ejb.ejbhome { public Hello create( ) throws RemoteException, CreateException; } public interface Hello extends javax.ejb.ejbobject{ public String sayhello(stringname) throws javax.rmi.remoteexception; } public class HelloBean implements javax.ejb.sessionbean { public String sayhello(string name) {.}. }

100 EJB Client J2EE EJB lookup create invoke EJB Client JNDI Home Interface Remote interface EJB Class

101 J2EE1.4 Web lookup getport invoke WS/EJB Client Stub Service Interface Service Locator Service Endpoint Interface Service Impl. Class JNDI J2EE

102 Web

103 Microsoft.NET C#,VB,C++, Sun JAX-RPC SOAP SOAP EJB2.1 Container Stateless Session Bean IBM WSTK SOAP Endpoint Interface

104 Web Service Endpoint EJB2.1 Container Enterprise Bean JAX-RPC Stub SOAP SOAP SOAP Microsoft Sun IBM

105 Enterprise Grid J2EE+WS FireWall J2EE FireWall FireWall J2EE J2EE+WS Web Browser FireWall

106 Craig R.McClanahan J2EE1.4 Ease of Development : Java Server Faces

107

108 J2EE1.4 JAIN SLEE Service Logic Execution Environment

109

110 Grid Web GGF / Globus

111 Ian Foster 1998 The Grid: Blueprint for a New Computing Infrastructure

112 The Physiology of the Grid /06/22

113 The Physiology of the Grid /06/22 OGSA Grid Web Open Grid Services Architecture (OGSA)

114 I.Foster Grid

115 Globus Toolkit 3.0 GT2 GT3

116 Globus / GT3 Grid Platform OS Web Grid Grid

117 GGF OGSA/OGSI Open Grid Service Architecture / Open Grid Service Infrastructure

118 GGF / OGSA

119

120 Grid Client getfactoryport createservice invoke Saved State Factory Grid Service Execution Environment Active State Instance Registry Handle Resolver Grid

121 J2EE,Web Service, Grid OGSI / Container J2EE JNDI Web Service UDDI / WSIL Container Home Intf. Service Intf. Component create get<port> Component Remote Remote Intf. Endpoint Grid Service OGSI Registry Factory createservice Handle / Reference

122 Grid Web OGSI WS-RF

123 Grid Web Services Grid GT1 GT2 Web HTTP WSDL, WS-* OGSI? WSDL 2, WSDM

124 OGSA / OGSI Domain-Specific Services OGSA Program Execution Core Services Data Services OGSI Open Grid Services Infrastructure Web Services Messaging, Security, Etc.

125 OGSA / WSRF Domain-Specific Services OGSA Program Execution Core Services Data Services WSRF Open WS-Resource Grid Services Framework Infrastructure Web Services Messaging, Security, Etc.

126 Grid Web Services WSRF Grid GT1 GT2 Web HTTP WSDL, WS-* OGSI WSDL 2, WSDM WSRF

127 WS-Resourse WS-Resourse

128

129

130 WS-Resourse WS-Resource Properties Document WS-Resourse WSDL porttype Resource Properties Documento <!-- Association of resource properties document to a porttype --> <wsdl:porttype name="genericdiskdrive" wsrp:resourceproperties="tns:genericdiskdriveproperties" >

131 Statefull-Resourse Projection WS-Resource Properties Document wsrp:resourceproperties=..

132 EndPoint WS-RF

133

134 J2EE Web Server EJB Web Browser Servlet/JSP DataBase

135 Factory WS-Resource EndpointReference WS-Resource WS-Resource Factory Service Requestor Web C A B createservice

136 WS-Resource Web Service Requestor A B C A B <wsa:endpointreference> <wsa:address> </wsa:address> <wsa:referenceproperties> <tns:resourceid> C </tns:resourceid> </wsa:referenceproperties> </wsa:endpointreference> Address ReferenceProperties EndpointReference

137 WS-Resource-qualified EndpointReference WS-Resource Context <wsa:endpointreference> <wsa:address> </wsa:address> <wsa:referenceproperties> <tns:resourceid> C </tns:resourceid> </wsa:referenceproperties> </wsa:endpointreference> A Address Component B Reference Property Component WS-Resource context

138 4. J2EE J2EE / Web Grid Web Business Process BPEL4WS J2EE -- Java Business Integration JSR208

139 Web

140 Web Web Web Document centric

141

142 RPC Java<->XML Serialization XML POST H T T P DeSerialization XML XML DeSerialization Serialization XML

143 X M L Document Centric XML In XML Out XML Inside X M L X M L RPC

144 Business Process Orchestration Choreography

145 Web Services Orchestration Web Web Services Choreography

146 Orchestration BPEL4WS Business Process Execution Language for Web Services IBM, Microsoft, BEA Choreography : WSCI Web Services Choreography Interface Sun, SAP, Intalio, BEA OASIS Web BPEL TC IBM, Microsoft, BEA, Oracle, Sun, SAP

147 BPEL4WS Business Process Execution Language for Web Services

148 BPEL4WS

149

150 BPEL4WS

151 BPEL Activity Primitive Activities <receive> <invoke> <reply> Structured Activities <sequence> <flow> <pick>..

152 Web Service <Receive> <Reply> Step 1 <invoke> Web Service <Sequence> Step 2 Step 3A <Flow> Step 3B

153 <process> <! Definition and roles of process participants --> <partnerlinks>... </partnerlinks> <!- Data/state used within the process --> <variables>... </variables> <!- Properties that enable conversations --> <correlationsets>... </correlationsets> <!- Exception handling --> <faulthandlers>... </faulthandlers> <!- Error recovery undoing actions --> <compensationhandlers>... </compensationhandlers> <!- Concurrent events with process itself --> <eventhandlers>... </eventhandlers> <!- Business process flow --> (activities)* BPEL Structure

154 J2EE Java Business Integration JSR208 N.Kassem TS3740.pdf M.Hapner JA-SIG Keynote.pdf WhitePaper JBIwp70903.fm.pdf

155 Java Business Integration

156 Java Business Integration

157 J2EE with JBI

158 Request-Response MEP One-Way MEP Callback MEP WSDL Message Exchange Patterns

159 Business System A JBI, System View Business System C SOAP EDI MoM Business System B

160 JBI, Process View Normalized Message Bus Binding Framework

161 Business Process Machines BPM) BPM BPM JBI BPM

162 SOAP MQ EIS resource AS1/AS2 JBI and J2EE 208 Machine SPI Normalized Message Bus 208 Binding SPI

163 JBI Container Model

164

165 Web Web J2EE Web Service J2EE Business Process Integration J2EE 1.4 J2EE JBI

166 Web Service Grid Business Process Integration Grid OGSA/OGSI Grid OGSA/WSRF Web Grid

167 Grid,Web J2EE Web Service J2EE JBI Business Process Integration Grid OGSA/WSRF

JavaFest04.PDF

JavaFest04.PDF J2EE EJB3.0 EoD EoD J2EE Container Component Container Component DI Annotation Container Create Passivate Component Remove Activate Remote Bank.java public interface Bank extends EJBObject { public void

More information

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

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

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

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

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

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

V8.1新規機能紹介記事

V8.1新規機能紹介記事 WebOTX V8.1 新規機能 EJB 3.0 WebOTX V8.1より Java EE 5(Java Platform, Enterprise Edition 5) に対応しました これによりいろいろな機能追加が行われていますが 特に大きな変更であるEJB 3.0 対応についてご紹介いたします なお WebOTX V7で対応したEJB 2.1についてもWebOTX V8.1で引き続き利用することが可能です

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

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

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

_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

日本オラクルの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

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

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

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

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

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

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

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

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

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

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

untitled

untitled Project Zero Web Web Oriented Architecture(WOA) HVSC. Beta Works 2 3 Ajax Asynchronous + JavaScript + XML JavaScript (XMLHttpRequest) XML, JSON XHTML HTML CSS Document Object Model (DOM) ( ) ( ) Web Web

More information

What's Oracle WebLogic Server ~なぜWebLogic Serverが選ばれるのか~

What's Oracle WebLogic Server ~なぜWebLogic Serverが選ばれるのか~ Oracle Direct Seminar What s Oracle WebLogic Server WebLogic Server Agenda What s Oracle WebLogic Server Oracle WebLogic Server TCO Oracle Direct Concierge SQL Server MySQL PostgreSQL

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

講座計画書サンプル

講座計画書サンプル 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

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

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

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

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

はじめに

はじめに 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

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

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

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

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

Make the Future Java FY13 PPT Template

Make the Future Java FY13 PPT Template Yoshio Terada Java Evangelist http://yoshio3.com, Twitter : @yoshioterada 1 以下の事項は 弊社の一般的な製品の方向性に関する概要を説明するものです また 情報提供を唯一の目的とするものであり いかなる契約にも組み込むことはできません 以下の事項は マテリアルやコード 機能を提供することをコミットメント ( 確約 ) するものではないため

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

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

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

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 プレゼンテーション 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

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

glossary.book

glossary.book BEAWebLogic Platform w ªªªª 7.0 ªª ª ª : 2002 6 m Copyright 2002 BEA Systems, Inc. All Rights Reserved. ªª ª ªªª ª BEA Systems, Inc. ªª ª ª ª ª ª ª ª ªªª ( BEA ) vw ~ ª ªª v ª ª ª ª ªª ~ ªª ª ª ÿ BEA ˆ

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

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener

22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Gener 22 (266) / Web PF-Web Web Web Web / Web Web PF-Web Web Web Web CGI Web Web 1 Web PF-Web Web Perl C CGI A Pipe/Filter Architecture Based Software Generator PF-Web for Constructing Web Applications. Tomohiro

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

"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

<Insert Picture Here>

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

More information

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

WebOTXマニュアル

WebOTXマニュアル WebOTX アプリケーション開発ガイド WebOTX アプリケーション開発ガイドバージョン : 7.1 版数 : 初版リリース : 2007 年 7 月 Copyright (C) 1998-2007 NEC Corporation. All rights reserved. 付録 4-2-1 目次 4. プログラミング 開発 (WebOTX)...3 4.2. EJBアプリケーション...3 4.2.1.

More information

Java演習(2) -- 簡単なプログラム --

Java演習(2)   -- 簡単なプログラム -- Java public class Hello Hello (class) (field)... (method)... Java main Hello World(Hello.java) public class Hello { public static void main(string[ ] args) { public() (package) Hello World(Hello.java)

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

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

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

IBM の Java 活用ガイド_rev2

IBM の Java 活用ガイド_rev2 Java 無償サポート終了でお悩みのお客様向けガイド IBM の Java ライフサイクルやサポートの仕組みさらに Java EE アプリの移 法など今知りたいことを 10 分でご理解頂けます いろいろ聞きたいことあります Oracle Java の無償サポート終了のニュースで気になることたくさんの A さん Java に詳しい IBM の 2 先ず ご存知かもしれませんが Java SE の仕様についておさらいしましょう

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

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

ejb.book

ejb.book BEAWebLogic Server TM WebLogic ªªªª ª ª JavaBeans ª ªªªªªª ª BEA WebLogic Server ªªª ª ª 7.0 ªª ª ª u : 2003 12 10 m Copyright 2002, BEA Systems, Inc. All Rights Reserved. ªª ª ªªª ª BEA Systems, Inc.

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 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

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

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

More information

Microsoft PowerPoint - JavaFesta.ppt

Microsoft PowerPoint - JavaFesta.ppt DI コンテナ Spring Framework による 次世代 Java EE アプリケーション開発 河村嘉之 日立ソフト研究部技師 / ソリューションアーキテクト Copyright Hitachi Softweare 2005 Engineering Hitachi Co., Software Ltd. 2004 Engineering All rights reserved. Co., Ltd.

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

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

OC4J-TWP-EJB3-MIGRATION-1013

OC4J-TWP-EJB3-MIGRATION-1013 EJB 3.0 への移行 Oracle ホワイト ペーパー 2005 年 10 月 EJB 3.0 への移行 2 EJB 3.0 への移行 移行が必要な理由... 4 EJB 3.0 における変更点... 4 Session Bean の移行... 5 Session Bean の変更... 5 Session Bean を使用するアプリケーション コードの移行... 7 Message-Driven

More information

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

Microsoft PowerPoint - グリッド協議会GT4研修資料_2007_配布用 Grid Computing グリッド協議会グリッドチュートリアル第 2 回第 2 回 Globus Toolkit v.4 のインストールと利用 日本アイ ビー エムシステムズ エンジニアリング株式会社松井学 ビジネス ユニットの名前 Globus Toolkit で何ができるのか? グリッドのアプリケーション / システムを構築するための道具箱 Grid 環境での要求 セキュリティ 情報サービス

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

2

2 Curl http://www.curlap.com TEL:03-5547-3866 FAX:03-5547-3867 tumemura@curlap.com 2 4 Web2.0 1 2 3 GUI 3 Web Web Etc URL http://www.xxxx.com/app/ Curl XML Curl SOAP HTTP HTTPS JIT Curl Curl RTE Curl Runtime

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

installtk.ps

installtk.ps IBM Host Access Toolkit 12.0 IBM SC88-9753-08 IBM Host Access Toolkit 12.0 IBM SC88-9753-08 19 B. IBM Host On-Demand 12.0 ( 5724-I20) Host Access Toolkit SC31-6354-08 IBM Host Access Toolkit Version 12.0

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

untitled

untitled IBM i IBM GUI 2 JAVA JAVA JAVA JAVA-COBOL JAVA JDBC CUI CUI COBOL DB2 3 1 3270 5250 HTML IBM HATS WebFacing 4 2 IBM CS Bridge XML Bridge 5 Eclipse RSE RPG 6 7 WEB/JAVA RPG WEB 8 EBCDIC EBCDIC PC ASCII

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

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

main.dvi

main.dvi Dec. 3, 1998 http://www.jaist.ac.jp/ kaiya/ 1??...? : Java RMI http://www.jaist.ac.jp/ kaiya/ 2 ( ) [1] [2] Bertrand Meyer. The Next Software Breakthrough. COMPUTER, Vol. 30, No. 7, pp. 113 114, Jul. 1997.

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

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr

. IDE JIVE[1][] Eclipse Java ( 1) Java Platform Debugger Architecture [5] 3. Eclipse GUI JIVE 3.1 Eclipse ( ) 1 JIVE Java [3] IDE c 016 Information Pr Eclipse 1,a) 1,b) 1,c) ( IDE) IDE Graphical User Interface( GUI) GUI GUI IDE View Eclipse Development of Eclipse Plug-in to present an Object Diagram to Debug Environment Kubota Yoshihiko 1,a) Yamazaki

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

コンテナでテストをまわせ! Java EE への自動テストの導入 1 小西高之 JBoss Technical Support Engineer Red Hat K.K.

コンテナでテストをまわせ! Java EE への自動テストの導入 1 小西高之 JBoss Technical Support Engineer Red Hat K.K. コンテナでテストをまわせ! Java EE への自動テストの導入 1 小西高之 JBoss Technical Support Engineer Red Hat K.K. コンテナでテストをまわせ! Twitter ハッシュタグ : #jt12_b202 小西高之 @leather_sole 2 とあるプロジェクトで... これからアプリケーションのテストを始める はい! まずはこのテストだ! 3

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

58.pdf

58.pdf Swing MasatoshiKanamaru masatoshi-kanamaru@exa-corp.co.jp Web Web exa review Swing Web HTML Web GUI HTML GUI JavaScript HTML GUI VB Web JSP HTML HTML HTML Struts Web HTML HTML HTML AjaxJavaScript B2C Flash

More information

スライド タイトルなし

スライド タイトルなし OASIS -OASIS Web OASIS OASIS - OASIS OASIS Web Web OASIS Web N OASIS OASIS Web Web N 20 WWW HTTP HTML PC Web-EDI EDI Web Web Web - Delphi Group President & CEO Thomas Coulopoulos Topic Maps Web

More information

1 Microsoft Windows Server 2012 Windows Server Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard Hyper-V Windows Server Windo

1 Microsoft Windows Server 2012 Windows Server Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard Hyper-V Windows Server Windo Windows Server 2012 2012 1 Cloud OS Windows Azure Platform On-Premises Service Provider 1 Microsoft Windows Server 2012 Windows Server 2012 1 Windows Azure Hyper-V Windows Server 2012 Datacenter/Standard

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

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

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

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

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

FileMaker 16 ODBC と JDBC ガイド

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

More information

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

Success with Java Technology ~ Java テクノロジーによる成功とロードマップ ~ 吉田豊 Java Web Services, Staff Engineer Sun Microsystems, Inc. 石原直樹 Java Technical Evangelist サ

Success with Java Technology ~ Java テクノロジーによる成功とロードマップ ~ 吉田豊 Java Web Services, Staff Engineer Sun Microsystems, Inc. 石原直樹 Java Technical Evangelist サ Success with Java Technology ~ Java テクノロジーによる成功とロードマップ ~ 吉田豊 Java Web Services, Staff Engineer Sun Microsystems, Inc. 石原直樹 Java Technical Evangelist サン マイクロシステムズ株式会社 Present Success of Java Java テクノロジーの成功

More information

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebSphere 版)

JEE 上の Adobe Experience Manager forms のインストールおよびデプロイ(WebSphere 版) JEE ADOBE EXPERIENCE MANAGER FORMS WEBSPHERE http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 AEM forms 2 AEM Forms 3 4 4.1................................................................................................

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

: : : 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

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

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

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

C3印刷用.PDF

C3印刷用.PDF [ C-3 ] Oracle8i On Windows Agenda Windows Oracle8i Oracle8i for Windows NT/2000 R8.1.7 Oracle HTTP Server Oracle intermedia Oracle Workflow Windows Oracle8i for Windows Oracle8i Enterprise Edition Oracle8i

More information