橡9iAS_DEV.PDF

Size: px
Start display at page:

Download "橡9iAS_DEV.PDF"

Transcription

1 Oracle9i Application Server for Windows NT 1

2 1 PL/SQL PL/SQL Web Toolkit Database Access Descriptor PL/SQL PL/SQL PL/SQL PL/SQL SERVLET Servlet Servlet Servlet Servlet ORACLE JSP Oracle JSP Oracle JSP Oracle JSP ORACLE9IAS WEB CACHE Oracle9iAS Web Cache

3 1 PL/SQL Oracle9i Application Server Oracle HTTP HTTP mod_plsql Oracle PL/SQL HTML Oracle9i Application Server PL/SQL HTML create or replace procedure helloplsql is begin htp.htmlopen(); htp.headopen(); htp.title( SAMPLE ); htp.headclose(); htp.bodyopen(); htp.print( Hello World ); htp.bodyclose(); htp.htmlopen(); end; Oracle9i Application Server PL/SQL Web Toolkit htp HTML htp.htmlopen <HTML> htp.title <TITLE> </TITLE> HTML PL/SQL Toolkit htp.htmlopen() htp.p( <HTML> ) HTML htp.p HTML 1.1 PL/SQL Web Oracle PL/SQL Oracle Oracle 3

4 Oracle9i Application Server Oracle Net8 Net8 Oracle8 Oracle9i Application Server Net8 Oracle8i WindowsNT Oracle9i Application Server Net8 Net8 Configuration Assistant Net8 Assistant Oracle9i Application Server 4

5 1.2 PL/SQL Web Toolkit PL/SQL HTML PL/SQL Web Toolkit PL/SQL Web Toolkit htp Oracle Apache modplsql owa owacomm.sql ( ) spool.... portal30 admin plsql owa owaldscr.sql ( ) spool owaldscr.sql [ ] Oracle9i Application Server Oracle Apache modplsql owa ( Oracle D: Oracle isuites D: Oracle isuites Apache modplsql owa ) > CD %ORACLE_HOME% Apache modplsql owa > CD Oracle isuites Apache modplsql owa SQL owaload.sql sqlplus PL/SQL Web Toolkit sys > sqlplus sys/( )@( ) > sqlplus sys/change_on_install@orcl SQL owaload.sql <logfile> 5

6 owaload.log <logfile> owaload.sql 1.3 Database Access Descriptor PL/SQL Web Toolkit DAD (Database Access Descriptor) DAD Oracle9i Application Server Oracle Apache modplsql cfg wdbsvr.app [WVGATEWAY] ( ) admindad= admindad= = Oracle9i Application Server URL <Port>)/<Virtual path>/ admin_/gateway.htm <Virtual path> pls : (Database Access Descriptor) DAD 6

7 DAD 7

8 DAD Database Access Descriptor ( ) Oracle ( ) Oracle ( ) Oracle ( ) 8

9 DAD [ ] [ ] DAD 1.4 PL/SQL Oracle PL/SQL PL/SQL Web Toolkit PL/SQL KeyWeb Creator WebDB SQL*Plus 9

10 create or replace procedure helloplsql is begin htp.htmlopen(); htp.prn('<meta HTTP-EQUIV="Content-Type"'); htp.p(' CONTENT="text/html;charset=Shift_JIS">'); htp.headopen(); htp.title('sample'); htp.headclose(); htp.bodyopen(); htp.print('hello World<BR>'); htp.print(' <BR>'); htp.bodyclose(); htp.htmlclose(); end helloplsql; / Oracle9i Application Server Oracle9i Application Server PL/SQL sqlplus scott/tiger@orcl SQL>@helloplsql.sql SQL>exit 10

11 1.5 PL/SQL Oracle9i Application Server PL/SQL PL/SQL 1. Oracle9i Application Server Net8 Oracle 2. Oracle PL/SQL Web Toolkit 3. Net8 Oracle9i Application Server DAD 4. PL/SQL URL PL/SQL path> /<DAD>/<Procedure> <Virtual path> pls 11

12 helloplsql PL/SQL sample.main <Package>.<Procedure> 1.6 PL/SQL Oracle9i Application Server Oracle Oracle SCOTT EMP( ) Oracle9i Application Server ( SCOTT TIGER) PL/SQL ( sample) 12

13 create or replace package sample as procedure main; end sample; / create or replace package body sample as procedure main as i NUMBER; cursor cur_emp is select e.empno,e.ename,d.dname,e.sal from emp e, dept d where e.deptno = d.deptno order by e.empno; begin htp.p('<html><head><title> </TITLE></HEAD>'); htp.p('<body>'); htp.p('<font size="+2"> </font><font size="+2" color="red"><b> </B></font><font size="+2"> </font>'); htp.p('<br><p>'); htp.p('<table border="2">'); htp.p('<tr>'); htp.p('<th><font size="+2"> </font></th>'); htp.p('<th><font size="+2"> </font></th>'); htp.p('<th><font size="+2"> </font></th>'); htp.p('<th><font size="+2"> </font></th>'); htp.p('</tr>'); for r in cur_emp loop htp.p('<tr>'); htp.p('<td bgcolor="white" fgcolor="black"><font size="+2"><b>' TO_CHAR(r.empno) '</b></font></td>'); htp.p('<td bgcolor="white" fgcolor="black"><font size="+2"><b>' r.ename '</b></font></td>'); htp.p('<td bgcolor="white" fgcolor="black"><font size="+2"><b>' r.dname '</b></font></td>'); IF r.sal < THEN htp.p('<td bgcolor="white" fgcolor="black"><font size="+2"><b>' TO_CHAR(r.sal) '</b></font></td>'); ELSE htp.p('<td bgcolor="red" fgcolor="white"><font color="white" size="+3"><b>' TO_CHAR(r.sal) '</b></font></td>'); END if; htp.p('</tr>'); end loop; htp.p('</font></table>'); htp.p('<hr><font size="+2"><a HREF="admin.form_input"> </A></font>'); htp.p('</body>'); htp.p('</html>'); end; end sample; / PL/SQL ( admin) 13

14 CREATE OR REPLACE PACKAGE ADMIN IS PROCEDURE FORM_INPUT; PROCEDURE UPDATE_SAL(a_empno IN emp.empno%type,a_sal IN emp.sal%type); END ADMIN; / CREATE OR REPLACE PACKAGE BODY ADMIN IS PROCEDURE FORM_INPUT AS CURSOR cur_emp IS SELECT e.empno,e.ename,e.sal FROM emp e ORDER BY e.empno; BEGIN HTP.P('<HTML><HEAD><TITLE> </TITLE></HEAD>'); HTP.P('<BODY><FONT SIZE="+2">'); HTP.P(', '); HTP.P('<FORM action="admin.update_sal" method="get">'); HTP.P('<TABLE>'); HTP.P('<TR>'); HTP.P('<TH><FONT SIZE="+2"> - </FONT></TH>'); HTP.P('<TH><FONT SIZE="+2"> </FONT></TH>'); HTP.P('<TH> </TH>'); HTP.P('</TR>'); HTP.P('<TR>'); HTP.P('<TD><FONT SIZE="+2">'); HTP.P('<SELECT name="a_empno">'); FOR row_emp IN cur_emp LOOP HTP.P('<OPTION value="' TO_CHAR(row_emp.empno) '">'); HTP.P(' ' row_emp.ename ' = ' TO_CHAR(row_emp.sal)); HTP.P('</OPTION>'); END LOOP; HTP.P('</SELECT>'); HTP.P('</FONT></TD>'); HTP.P('<TD><FONT SIZE="+2">'); HTP.P('<INPUT type="text" name="a_sal">'); HTP.P('</FONT></TD>'); HTP.P('<TD><FONT SIZE="+2">'); HTP.P('<INPUT type="submit" value=" ">'); HTP.P('</FONT></TD>'); HTP.P('</TR>'); HTP.P('</TABLE>'); HTP.P('</FORM>'); HTP.P('</FONT>'); HTP.P('<FONT SIZE="+2">'); htp.p('<hr><a HREF="sample.main">EMP </A>'); HTP.P('</FONT>'); HTP.P('</BODY>'); HTP.P('</HTML>'); END FORM_INPUT; ( ) 14

15 ( ) PROCEDURE UPDATE_SAL(a_empno IN emp.empno%type,a_sal IN emp.sal%type) AS v_sal emp.sal%type; v_ename emp.ename%type; BEGIN HTP.P('<HTML><HEAD><TITLE> </TITLE></HEAD>'); HTP.P('<BODY>'); SELECT ename,sal INTO v_ename,v_sal FROM emp WHERE empno = a_empno; UPDATE EMP set sal = a_sal WHERE empno = a_empno; HTP.P('<FONT SIZE="+2">'); HTP.P(' <B> ' v_ename ' </B>( No: ' a_empno '),'); HTP.P( '<B>' TO_CHAR(v_sal) ' </B> <B> ' TO_CHAR(a_sal) '</B> '); HTP.P('<BR><BR>'); HTP.P('<A HREF="admin.form_input"> </A>'); HTP.P('</FONT>'); HTP.P('</BODY>'); HTP.P('</HTML>'); EXCEPTION WHEN OTHERS THEN HTP.P(TO_CHAR(SQLCODE) SQLERRM); HTP.P('</BODY>'); HTP.P('</HTML>'); END UPDATE_SAL; END ADMIN; / URL path> /<DAD>/sample.main <Virtual path> pls (sample.main ) 15

16 [ ] 16

17 URL 17

18 1.7 PL/SQL PL/SQL Oracle Oracle9i Application Server HTTP PL/SQL PL/SQL HTML 1 Oracle9i Application Server Oracle / DAD PL/SQL 18

19 2 Servlet Servlet API Oracle9i Application Server Oracle9i Application Server Servlet CGI import javax.servlet.*; import javax.servlet.http.*; Servlet Servlet API JDeveloper Suite import java.io.*; import java.util.*; public class HelloServlet extends HttpServlet { } // HTTP Get } public void doget(httpservletrequest request, HttpServletResponse response) throws ServletException, IOException { response.setcontenttype("text/html"); PrintWriter out = new PrintWriter(response.getOutputStream()); out.println("<html>"); out.print("<meta HTTP-EQUIV= "Content-Type ""); out.println(" CONTENT= "text/html;charset=shift_jis ">"); out.println("<head><title> Servlet</TITLE></HEAD>"); out.println("<body> Servlet</BODY>"); out.println("</html>"); out.close(); 19

20 Servlet HttpServletRequest HttpServletRequest Web HTTP URL HttpServletResponse HttpServletResponse Web HTTP getwriter HTML PrintWriter println HTML 2.1 Servlet Servlet JDeveloper Suite class Oracle9i Application Server Oracle JDeveloper Suite Servlet Oracle Jdeveloper Suite Java Servlet > <Drive> > CD <Directory> > C: > CD src servlet PATH Oracle9i Application Server Java 20

21 > set PATH=%ORACLE_HOME% Apache jdk bin;%path% > set PATH=D: Oracle isuites Apache jdk bin;%path% CLASSPATH Oracle9i Application Server JSDK(Java Servlet Development Kit) jar > set CLASSPATH=%ORACLE_HOME% Apache Jsdk lib jsdk.jar > set CLASSPATH=D: Oracle isuites Apache Jsdk lib jsdk.jar Java Java > javac <file>.java > javac HelloServlet.java HelloServlet.class 21

22 2.2 Servlet Oracle9i Application Server Servlet Oracle9i Application Server Java %ORACLE_HOME% Apache Jserv servlets D: Oracle isuites Apache Jserv servlets Servlet Java URL 22

23 path>/<class> <Virtual path> servlets Servlet Servlet Oracle9i Application Server [ ] [ ] [Oracle-<Oracle >] [Oracle HTTP Server] [Start HTTP Server powered by Apache] Servlet Java HelloServlet Servlet 23

24 2.4 Servlet Servlet HTTP HTML 1 Oracle JDBC Web Servlet Oracle JDBC Thin Driver JDBC2.0 Connection Pooling Servlet Oracle Connection Pooling 2 JServ Servlet JServ JServ JServ 3 EJB Enterprise JavaBeans EJB 24

25 3 Oracle JSP Oracle JavaServer Pages(Oracle JSP) Servlet API HTML Java Servlet HTML Oracle JSP Web JavaBeans JSP JavaBeans Oracle JSP page contenttype="text/html;charset=shift_jis" %> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=Shift_JIS"> <TITLE>,JSP </TITLE> </HEAD> <BODY> <H1>,JSP </H1> <%! String saying = ",JSP";%> <%! int counter = 0;%> <TABLE> <% for (counter=0;counter<3;counter++) { %> <TR> <TD><%= counter %></TD> <TD><%= saying %></TD> </TR> <% } %> </TABLE> </BODY> </HTML> 25

26 Oracle JSP Java HTML Oracle JSP HTML Java <% %> Oracle JSP.jsp Oracle JSP 1. Oracle9i Application Server JSP 2. JSP Oracle JSP Java Servlet 3. Java Servlet Oracle JSP Servlet 3.1 Oracle JSP.jsp ( JSPsample.jsp) <%@ page contenttype="text/html;charset=shift_jis" %> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=Shift_JIS"> <TITLE>,JSP </TITLE> </HEAD> <BODY> <H1>,JSP </H1> <%! String saying = ",JSP";%> <%! int counter = 0;%> <TABLE> <% for (counter=0;counter<3;counter++) { 26

27 %> <TR> <TD><%= counter %></TD> <TD><%= saying %></TD> </TR> <% } %> </TABLE> </BODY> </HTML> JSP JSP %ORACLE_HOME% Apache jsp conf ojsp.conf D: Oracle isuites Apache jsp conf ojsp.conf JSP 1 Alias /<Virtual Path>/ <Directory>/ Alias /jsp/ D: Home jsp/ <Virtual Path>,<Directory> / JSP Alias URL JSP <Virtual Path>/<File>.jsp JSPsample.jsp JSP 27

28 Oracle JSP 3.2 Oracle JSP Oracle JSP Oracle9i Application Server [ ] [ ] [Oracle-<Oracle >] [Oracle HTTP Server] [Start HTTP Server powered by Apache] URL <Virtual Path>/<File>.jsp JSPsample.jsp JSP 28

29 3.3 Oracle JSP Oracle JSP 1 Oracle JSP Bean Oracle JSP ( ) Java int java.lang.integer, java.lang.string Java <% %> Java Oracle JSP Java 4 Bean Oracle.jsp.jml.JmlBooean: boolean Bean Oracle.jsp.jml.JmlInteger: Bean Oracle.jsp.jml.JmlDouble: Bean Oracle.jsp.jml.JmlString: Bean Oracle JSP Bean <jsp:usebean> Oracle JSP 0 count 29

30 <jsp:userbean id= count class= oracle.jsp.jml.number scope= application /> 2 JSP Oracle Bean Web 3 /EJB Bean JSP Bean EJB 30

31 4 Oracle9iAS Web Cache Oracle9i Application Server PL/SQL Oracle9iAS Web Cache 4.1 Oracle9iAS Web Cache Web Cache URL ( ) <hostname> Oracle9iAS Web Cache <port> Web Cache 4000 [Web Cache Manager] / administrator OK Oracle9iAS Web Cache Web Cache [Administrating Web Sties] [Application Web Servers] 31

32 Application Server [Administrating Web Sites] [Cacheability Rules] URL Priority 1 [Insert Above] 32

33 [URL Expression] URL( ) URL ^/<Virtual path>/<dad>/<procedure>$ : ^/pls/orcl/sample.main$ ^ $ ^ URL( ) [Cache] [Submit] Cacheability Rules URL 33

34 34

35 [Apply Changes] Web Cache URL PL/SQL path> /<DAD>/<Procedure> <Hostname> Oracle9iAS Web Cache Web Cache <Virtual path> pls (sample.main ) (1100 Oracle9iAS Web Cache ) Web Cache 35

36 4.2 Oracle9iAS Web Cache Web Cache Oracle 8.1.6/8.17 Oracle JVM Oracle9i Application Server ( SCOTT TIGER) create or replace procedure utl_invalidate_proc ( machine in varchar2, port in integer, uri in varchar2 ) is d integer; c utl_tcp.connection; DQUOTE constant varchar2(1) := chr(34); CR constant varchar2(1) := chr(13); content_length integer; BEGIN content_length := LENGTH(uri) + 177; dbms_output.put_line('content-length:' content_length); c := utl_tcp.open_connection(machine, port); d := utl_tcp.write_line(c, 'POST /x-oracle-cache-invalidate HTTP/1.0'); d := utl_tcp.write_line(c, 'Authorization: BASIC YWRtaW5pc3RyYXRvcjphZG1pbmlzdHJhdG9yD'); d := utl_tcp.write_line(c, 'Content-Length: ' content_length); dbms_output.put_line('content-length: ' content_length); d := utl_tcp.write_line(c, CR ); dbms_output.put_line('cr'); d := utl_tcp.write_line(c, '<?xml version=' DQUOTE '1.0' DQUOTE '?>'); d := utl_tcp.write_line(c, '<!DOCTYPE INVALIDATION SYSTEM ' DQUOTE 'internal:///invalidation.dtd' DQUOTE '>'); d := utl_tcp.write_line(c, '<INVALIDATION>'); d := utl_tcp.write_line(c, '<URL EXP=' DQUOTE uri DQUOTE ' PREFIX=' DQUOTE 'NO' DQUOTE '>'); d := utl_tcp.write_line(c, '<VALIDITY LEVEL=' DQUOTE '0' DQUOTE ' />'); d := utl_tcp.write_line(c, '</URL>'); d := utl_tcp.write_line(c, '</INVALIDATION>'); BEGIN LOOP dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),1,80)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),81,160)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),161,240)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),241,320)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),321,400)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),401,480)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),481,560)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),561,640)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),641,720)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),721,800)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),801,880)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),881,960)); dbms_output.put_line(substr(utl_tcp.get_line(c, TRUE),961,1040)); END LOOP; EXCEPTION WHEN utl_tcp.end_of_input THEN NULL; END; utl_tcp.close_connection(c); END; 36

37 EMP( ) Web Cache ( sample.main ) EMP Oracle9i Application Server ( SCOTT TIGER) CREATE OR REPLACE TRIGGER SCOTT.UTL_INVALID_TRIG AFTER DELETE OR INSERT OR UPDATE on SCOTT.emp BEGIN utl_invalidate_proc('<hostname>',<port>,'/<virtual Path>/<DAD>/<procedure>'); END; / utl_invalidate_proc <Hostname> Oracle9iAS Web Cache <port> ( 4001) 3 URL CREATE OR REPLACE TRIGGER SCOTT.UTL_INVALID_TRIG AFTER DELETE OR INSERT OR UPDATE on SCOTT.emp BEGIN utl_invalidate_proc(' END; / [ ] 37

38 EMP( ) Web Cache EMP Web Cache URL Web Cache Web Cache 38

39 Oracle9iAS Web Cache Oracle9iAS Web Cache Oracle Web Cache 39

40 5 Oracle9i Application Server Oracle9iAS Portal Oracle9iAS Portal Portal Developer's Kit API Java XML Oracle9iAS Portal OTN Japan ( ) Oracle9i Application Server Oracle JDeveloper Oracle JDeveloper Oracle Java Java Business Components for Java GUI Key Web Creator Key Web Creator PL/SQL Web Web 40

41 Oracle Oracle8 Oracle8i Oracle9i Net8 41

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

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

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

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

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

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

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

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse

Web 1 p.2 1 Servlet Servlet Web Web Web Apache Web Servlet JSP Web Apache Tomcat Jetty Apache Tomcat, Jetty Java JDK, Eclipse Web 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 Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java Java

More information

Microsoft PowerPoint - Lecture_3

Microsoft PowerPoint - Lecture_3 プログラミング III 第 3 回 : サーブレットリクエスト & サーブレットレスポンス処理入門 Ivan Tanev 講義の構造 1. サーブレットの構造 2. サーブレットリクエスト サーブレットレスポンスとは 3. 演習 2 Lecture2_Form.htm 第 2 回のまとめ Web サーバ Web 1 フォーム static 2 Internet サーブレ4 HTML 5 ットテキスト

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

PowerPoint Presentation

PowerPoint Presentation プログラミング Java III 第 4 回 : サーブレットの HTTP Request の処理 Ivan Tanev 講義の構造 1. サーブレットの HTTP Request の処理 2. 演習 2 第 3 回のまとめ Internet Explorer のアドレス バー : http://isd-si.doshisha.ac.jp/teaching/programming_3/xxxxxxxx/lecture3_form1.html

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

Microsoft PowerPoint - Lecture_2

Microsoft PowerPoint - Lecture_2 プログラミング Java III 第 2 回 :WebForm および サーブレット入門 Ivan Tanev 講義の構造 1. ダイナミックWebコンテンツとサーブレット 2.Webフォーム 3. 演習 2 1. ダイナミック Web コンテンツとサーブレット 3 1. ダイナミック Web コンテンツとサーブレット Internet Response: HTML テキスト ユーザー 4 1. ダイナミック

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

HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f

HTML Java Tips   dp8t-asm/java/tips/ Apache Tomcat Java if else f 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway InterfaceWeb HTML Web Web CGI CGI CGI Perl C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java / Java Java CGI Servlet

More information

HTML Java Tips dp8t-asm/java/tips/ Apache Tomcat Java if else f

HTML Java Tips   dp8t-asm/java/tips/ Apache Tomcat Java if else f 1 Servlet 1.1 Web Web WWW HTML CGI Common Gateway InterfaceWeb HTML Web Web CGI CGI CGI Perl C Java Applet JavaScript Web CGI HTML 1.2 Servlet Java Servlet Servlet CGI Web CGI 1 Java / Java Java CGI Servlet

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

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

KeyWeb Creator 概要 What s KeyWeb Creator? 動的なホームページを作成するためのツール!! 従来の Web ページ DB を利用した Web ページ <HTML> <HEAD> <TITLE>show_book</TITLE> </HEAD> <BODY> <DI

KeyWeb Creator 概要 What s KeyWeb Creator? 動的なホームページを作成するためのツール!! 従来の Web ページ DB を利用した Web ページ <HTML> <HEAD> <TITLE>show_book</TITLE> </HEAD> <BODY> <DI KeyWeb Creator R3.0 Beta 日本オラクル株式会社システム製品マーケティング部 1 KeyWeb Creator 概要 What s KeyWeb Creator? 動的なホームページを作成するためのツール!! 従来の Web ページ DB を利用した Web ページ show_book

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

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

橡実践Oracle Objects for OLE

橡実践Oracle Objects for OLE THE Database FOR Network Computing 2 1. 2 1-1. PL/SQL 2 1-2. 9 1-3. PL/SQL 11 2. 14 3. 16 3-1. NUMBER 16 3-2. CHAR/VARCHAR2 18 3-3. DATE 18 4. 23 4-1. 23 4-2. / 24 26 1. COPYTOCLIPBOARD 26 III. 28 1.

More information

メディプロ1 Javaサーブレット補足資料.ppt

メディプロ1 Javaサーブレット補足資料.ppt メディアプロジェクト演習 1 Java サーブレット補足資料 CGI の基本 CGI と Java サーブレットの違い Java サーブレットの基本 インタラクティブな Web サイトとは Interactive q 対話 または 双方向 q クライアントとシステムが画面を通して対話を行う形式で操作を行っていく仕組み 利用用途 Web サイト, シミュレーションシステム, ゲームなど WWW = インタラクティブなメディア

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

II 2 p.2 2 GET POST form action URL Aisatsu 2.1 Servlet GET GET : Query String QueryStringTest.java 1 import java.io.ioexception; 2 import java.io.pri

II 2 p.2 2 GET POST form action URL Aisatsu 2.1 Servlet GET GET : Query String QueryStringTest.java 1 import java.io.ioexception; 2 import java.io.pri II 2 p.1 2 GET POST Servlet Servlet Servlet CGI/Servlet GET POST 2 GET URL? FORM GET : http://maps.google.co.jp/maps?hl=ja&ll=34.292821,134.063587&z=15 POST HTML HTML : Aisatsu.html HTML 1

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

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

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

PowerPoint Presentation

PowerPoint Presentation 上級プログラミング 2( 第 7 回 ) 工学部情報工学科 木村昌臣 今日のテーマ Web アプリケーションとは Web アプリケーションとはなにか Web アプリケーションの仕組み 三層アプリケーション サーブレット JSP JavaBeans MVC モデル Web アプリケーションの環境構築 Web サーバー (Apache) Web アプリケーションサーバー (Tomcat) Web アプリケーションとは

More information

WebOTXマニュアル

WebOTXマニュアル WebOTX アプリケーション開発ガイド WebOTX アプリケーション開発ガイドバージョン : 7.1 版数 : 第 2 版リリース : 2010 年 1 月 Copyright (C) 1998-2010 NEC Corporation. All rights reserved. 4-1-1 目次 4. J2EE WebOTX...3 4.1. Webアプリケーション...3 4.1.1. Webアプリケーションを作成する...3

More information

スライド 1

スライド 1 Web プログラミング 2 7. JSP と Servlet による Web プログラミング概要 ( 復習 )Web アプリケーションの実現方式 : 授業で扱う範囲 SSI (Server Side Include) C-Shellなど JSP (Java Server Pages) PHP など Web ブラウザ Internet Done Web サーバ Done JavaApplet JavaScript

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 Developer for Microsoft Windows R6i Patch13 リリース・ノート

Oracle Developer for Microsoft Windows R6i Patch13 リリース・ノート Oracle Developer for Microsoft Windows R6i Patch13 2003 4 : J07595-01 Copyright 2003, Oracle Corporation All Right Reserved Oracle Oracle Oracle Corporation Oracle Forms Developer Oracle9iAS Forms Services

More information

1. E-Business (Web ) 3 Web (Web Server) SSL(Secure Socket Layer) Netscape Communications 3 Oracle Internet Application Server 8i R1.0.1( Oracle ias )

1. E-Business (Web ) 3 Web (Web Server) SSL(Secure Socket Layer) Netscape Communications 3 Oracle Internet Application Server 8i R1.0.1( Oracle ias ) Oracle Advanced Security Oracle8i Oracle Internet Application Server (WindowsNT ) Creation Date: Sep 23, 2000 Last Update: Oct 24, 2000 Version: 1.1 1. E-Business (Web ) 3 Web (Web Server) SSL(Secure Socket

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

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(10.1.2) for Microsoft Windows Portal Oracle Application Server 10g(10.1.2) for Microsoft Windows Portal Oracle Application Server 10g(10.1.2) Oracle Application Server(OracleAS)

More information

Servlet/JSP ( 作成中 ) 2010 年 x 月 x 日作成 Firebird 日本ユーザー会 Naoyuki Sano 1

Servlet/JSP ( 作成中 ) 2010 年 x 月 x 日作成 Firebird 日本ユーザー会 Naoyuki Sano     1 Servlet/JSP ( 作成中 ) 2010 年 x 月 x 日作成 Firebird 日本ユーザー会 Naoyuki Sano http://rururu.sakura.ne.jp/ http://rururublog.sblo.jp/ 1 Servlet/JSP を教わった人 2004/9/25-2005/5/21 秦崇 [ はたたかし ] さん (http:// 秦崇.jp/) 2009

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

日本オラクル株式会社

日本オラクル株式会社 FISC 6 Oracle Database 10g ~ ~ : 2005 7 26 : 2005 7 31 : 1.0 2004 4 (* ) FISC ) (* ) FISC 6 (* FISC 6 ) FISC 6 Oracle g Database 10 (FISC) http://www.fisc.or.jp FISC http://www.fisc.or.jp/info/info/050307-1.htm

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

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

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2..

1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2.. Servlet/JSP 1 1 3 1.1 Web............................ 3 1.2 Servlet/JSP.................................. 3 2 JSP 7 2.1................................... 7 2.2........................................

More information

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058

1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 1 SQL Server SQL Oracle SQL SQL* Plus PL/SQL 2 SQL Server SQL Server SQL Oracle SQL SQL*Plus SQL Server GUI 1-1 osql 1-1 Transact- SQL SELECTFROM 058 2 Excel 1 SQL 1 SQL Server sp_executesql Oracle SQL

More information

Java Platform Debugger Architecture Apache JServ Oracle JVM JPDA JVM Tomcat Oracle JVM... 7

Java Platform Debugger Architecture Apache JServ Oracle JVM JPDA JVM Tomcat Oracle JVM... 7 Oracle JDeveloper 3.1 Servlet/JSP 1... 2 1.1... 2 2 Java Platform Debugger Architecture... 3 3 Apache JServ... 5 3.1 Oracle JVM... 5 3.2 JPDA JVM... 5 4 Tomcat... 7 4.1 Oracle JVM... 7 4.2 JPDA JVM...

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

<Documents Title Here>

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

More information

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

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

More information

untitled

untitled Oracle Database Lite 10 g GUI Win32 Agenda Win32 Oracle Database Lite 10g Mobile Database WorkbenchGUI Oracle Database Lite 10g 10.2.0 21 Win32 Mobile Database Workbench Oracle Database Lite10g Release2

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

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

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

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

Web JavaScript Java Applet Flash ActionScript CGI (C, perl, ruby ) PHP Servlet, JSP (JavaServer Pages) ASP 7-2

Web JavaScript Java Applet Flash ActionScript CGI (C, perl, ruby ) PHP Servlet, JSP (JavaServer Pages) ASP 7-2 Servlet 7-1 Web JavaScript Java Applet Flash ActionScript CGI (C, perl, ruby ) PHP Servlet, JSP (JavaServer Pages) ASP 7-2 Servlet Java CGI Tomcat Apache+Tomcat JSP Web HTML Java Java Servlet ( ) 7-3 Servlet

More information

... 1... 2... 2... 2... 4... 4... 5 HTML/JSP/Servlet... 7 JSP... 7 Servlet... 11 Struts... 15 Struts... 15 Struts... 16... 17... 25 FormBean LoginForm

... 1... 2... 2... 2... 4... 4... 5 HTML/JSP/Servlet... 7 JSP... 7 Servlet... 11 Struts... 15 Struts... 15 Struts... 16... 17... 25 FormBean LoginForm Oracle JDeveloper 10g Struts Creation Date: May 28, 2004 Last Update: Aug 19, 2004 Version 1.0.1 ... 1... 2... 2... 2... 4... 4... 5 HTML/JSP/Servlet... 7 JSP... 7 Servlet... 11 Struts... 15 Struts...

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

Microsoft PowerPoint - oas4082_NewFeature.ppt[fiLJݔæ‡è’êŠp]

Microsoft PowerPoint - oas4082_NewFeature.ppt[fiLJݔæ‡è’êŠp] Oracle Application Server 4.0.8.2 新機能概要 日本オラクル株式会社 1 1 OAS 4.0.8.2 Enhancements セキュリティ関連の機能拡張 Weak Crypto Exclusion/Cookie の最大サイズ拡張 / Entrust Certificate Authority サポート JServlet の機能拡張 Chaining Servlets/Aliasing

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 1 2 3 4 HTML 5 HTML 6 7 8 9 ( ) 10 11 ( ) Switch(state) case STATE_xxxx : int op_state = opponent.getstate(); switch (op_state) { case STATE_yyyy : < > player.setstate(state_zzzz); 12 13 14 15 16 17 request

More information

Windowsユーザーの為のOracle Database セキュリティ入門

Windowsユーザーの為のOracle Database セキュリティ入門 Oracle on Windows etc http://www.oracle.co.jp/campaign/mb_tech/ Windows Server System Center / OTN Japan http://www.oracle.com/technology/global/jp/tech/windows/.net + Oracle Database.NET Developer Center

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

<Documents Title Here>

<Documents Title Here> Oracle9i Database R9.2.0 for Windows Creation Date: Mar 06, 2003 Last Update: Mar 24, 2003 CD 1 A99346-01 Oracle9i Database Release 2 (9.2.0.1.0) for Microsoft Windows NT/2000/XP CD 1 of 3 2 A99347-01

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

ストラドプロシージャの呼び出し方

ストラドプロシージャの呼び出し方 Release10.5 Oracle DataServer Informix MS SQL NXJ SQL JDBC Java JDBC NXJ : NXJ JDBC / NXJ EXEC SQL [USING CONNECTION ] CALL [.][.] ([])

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

http://localhost:8080 /idoapp/helloworld server-ido request HTML ttp://localhost:8080 /idoapp/helloworld ):8080 /idoapp/helloworld http://(ip import java.io.*; import javax.servlet.*; import javax.servlet.http.*;

More information

Oracle9i Application Server for Windows NT/2000 リリース・ノート追加情報 リリース

Oracle9i Application Server for Windows NT/2000 リリース・ノート追加情報 リリース Oracle9i Application Server for Windows NT/2000 リリース ノート追加情報 リリース 1.0.2.1 2001 年 5 月 部品番号 : J03818-01 原典情報 : Oracle9i Application Server Release Notes Addendum, Release 1.0.2.1 for Windows NT/2000 (A88731-02)

More information

FileMaker 15 ODBC と JDBC ガイド

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

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

hands_on_4.PDF

hands_on_4.PDF PHPMySQL 4 PC LAN 2 () () SQLDBMS DBMS DataBase Management System mysql DBMS SQL Structured Query Language SQL DBMS 3 DBMS DataBase Management System B Table 3 Table 2 Table 1 a 1 a 2 a 3 A SQLStructured

More information

0315_F1_8iJDBC-SQLJ.PDF

0315_F1_8iJDBC-SQLJ.PDF Page 1 1 Page 2 2 JDBC JDBC JDBC JDBC JDBC SQLJ SQLJ SQLJ SQLJ SQLJ Page 3 3 JDBC Java JDBC RDBMS JDBC ODBC JDBC SQL JDBC SQL Java API Java JDBC Java API RDBMS Java Java JDBC JDBC ODBC Javasoft SQL99 JDBC

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

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

OOW_I06

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

More information

組織変更ライブラリ

組織変更ライブラリ 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

Oracle HTML DB 導入ガイド

Oracle HTML DB 導入ガイド Oracle HTML DB Oracle Database 10g ... 4... 4 1... 4... 4 2... 5 2.1 Oracle HTTP Server... 6... 6... 7 2.2 root... 9 UNIX... 9 UNIX... 10 2.3 Oracle... 10... 11 (Bash )... 12 2.4 Oracle HTML DB... 13 2.5...

More information

_02_3.ppt

_02_3.ppt XML DB Oracle Corporation Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 2 Agenda RDB XML SQL/XML XML DB XML Oracle Corporation 3 RDB-XML RDB XML Oracle Corporation 4 XML RDB [Oracle] Extract ExtractValue

More information

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

<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

"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

新・明解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

Part1 159 a a

Part1 159 a a Tomcat 158 Part1 159 a a Tomcat hello World!

More information

Oracle Fail Safe For Windows NT and Windows 2000 リリース・ノート、リリース 3.1.2

Oracle Fail Safe For Windows NT and Windows 2000 リリース・ノート、リリース 3.1.2 Oracle Fail Safe for Windows NT and Windows 2000 3.1.2 2001 7 : J04372-01 Oracle Applications 11i Oracle E-Business Suite 11i Oracle Oracle Oracle Corporation JInitiator Oracle7 Oracle8 Oracle8i Oracle

More information

ハイウォーターマークを知る

ハイウォーターマークを知る THE Database FOR Network Computing Oracle Oracle Oracle7 Oracle8 Oracle8 Enterprise Edition R8.0.4 for Windows NTOracle7 Server R7.3.4 for Windows NT Oracle7Oracle8 Oracle,Oracle7,Oracle8 1.5.1.... 6 1.5.2.

More information

FileMaker ODBC と JDBC ガイド

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

More information

サーブレット (Servlet) とは Web サーバ側で動作する Java プログラム 通常はapache 等のバックグラウンドで動作する Servletコンテナ上にアプリケーションを配置 代表的な Servlet コンテナ Apache Tomcat WebLogic WebSphere Gla

サーブレット (Servlet) とは Web サーバ側で動作する Java プログラム 通常はapache 等のバックグラウンドで動作する Servletコンテナ上にアプリケーションを配置 代表的な Servlet コンテナ Apache Tomcat WebLogic WebSphere Gla サーブレット 1 オブジェクト指向プログラミング特論 サーブレット (Servlet) とは Web サーバ側で動作する Java プログラム 通常はapache 等のバックグラウンドで動作する Servletコンテナ上にアプリケーションを配置 代表的な Servlet コンテナ Apache Tomcat WebLogic WebSphere GlassFish 2 オブジェクト指向プログラミング特論

More information

Oracle Lite Tutorial

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

More information

Oracle9i Application Server for Windows NT Oracle HTTP Server powered by Apacheパフォーマンス・ガイド, リリース1.0.2

Oracle9i Application Server for Windows NT Oracle HTTP Server powered by Apacheパフォーマンス・ガイド, リリース1.0.2 Oracle9i Application Server for Windows NT Oracle HTTP Server powered by Apache 1.0.2 2001 2 : J02963-01 Oracle9i Application Server for Windows NT Oracle HTTP Server powered by Apache, 1.0.2 : J02963-01

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

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63>

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63> imai@eng.kagawa-u.ac.jp (Tel: 087-864-2244(FAX )) Vodafone( J-Phone) (J-SA51 090-2829-9999) JavaTM ( Vappli ) SUN ( SUN ) Java2SE(J2SDK1.3.1 Java Standard Edition) Java2MEforCLDC(WTK1.04 Wireless Tool

More information

Oracle Lite Tutorial

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

More information

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

java_servlet2_見本

java_servlet2_見本 13 2 JSF Web 1 MVC HTML JSP Velocity Java 14 JSF UI PC GUI JSF Web 2.1 JSF JSF Web FORM FORM 2-1 JSF role, JSF JSF 15 Web JSF JSF Web Macromedia JSF JSF JSF 2.2 / Subscriber package com.mycompany.newsservice.models;

More information

PowerPoint -O80_REP.PDF

PowerPoint -O80_REP.PDF Oracle8 Core Technology Seminar 1997109,31 Oracle8 OS: UNIX Oracle8 : Release8.0.3 Oracle8 Quick Start Package Lesson 5 -- Enhancements to Distributed Facilities Oracle8 -- - Oracle8 LOB Oracle8 -- - Updates

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

untitled

untitled Struts IT Open Source JavaEE Application Consulting Struts Open Source JavaWorld Jakarta 4 Jakarta/Apache Copyright(c) yukimitsu kurozumi 2007 All Rights Reserved. 2 1986 150 CAC OSS Consulting,, Web System

More information

FileMaker ODBC and JDBC Guide

FileMaker ODBC and JDBC Guide FileMaker 14 ODBC JDBC 2004-2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc. FileMaker WebDirect FileMaker,

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

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