gSOAP, Pthreads-Win32, OpenSSLを使ったSOAS C/Sアプリ開発

Size: px
Start display at page:

Download "gSOAP, Pthreads-Win32, OpenSSLを使ったSOAS C/Sアプリ開発"

Transcription

1 gsoap, Pthreads-Win32, OpenSSL SOAP C/S Developer Tools Group 1973 TurboC++2nd JBuilder ML,C++Builder ML,Delphi ML,C# ML,CORBA ML Java 2

2 SOAP, WSDL, / IDL2WSDL IDL WSDL gsoap + Web CGI SOAP gsoap + Pthreads-Win32 CGI gsoap + Pthreads-Win32 + OpenSSL SOAP over SSL Delphi SSL 3 SOAP

3 C/S 1 BDE etc GUI TCP/IP RDBMS 2 - SOAP TCP/IP GUI SOAP over SOAP RDBMS HTTP TCP/IP 5 SOAP XML HTTP Y = obj.foo(x); X HTTP return Y; SOAP Y HTTP SOAP 6

4 WSDL Web Services Description Language Web WSDL / /.. WSDL Y = obj.foo(x); SOAP (A) SOAP (B) return Y; SOAP (A) SOAP (B) 7 SOAP Apache + CGI CGI Apache Tomcat + Apache Axis( ) + Tomcat xxx.class Axis IIS + ASP.NET + IIS ASP.NET.NET8

5 IDL2WSDL WSDL WSDL XML WSDL WSDL WSDL Demo.wsdl <?xml version="1.0" encoding="utf-8"?> <wsdl:definitions targetnamespace=" xmlns:impl=" xmlns:intf=" xmlns:apachesoap=" xmlns:wsdlsoap=" xmlns:soapenc=" xmlns:xsd=" xmlns:tns1=" xmlns:wsdl=" <wsdl:types> <schema xmlns=" targetnamespace=" <import namespace=" <import namespace=" <complextype name="employee"> <sequence> <element name="id" type="xsd:int"/> <element name="data" nillable="true" type="soapenc:string"/> </sequence> </complextype> <complextype name="nosuchemployee"> <complexcontent> <extension base="tns1:userexception"> <sequence> <element name="reason" nillable="true" type="soapenc:string"/> </sequence> </extension> </complexcontent> </complextype> </schema> <schema xmlns=" targetnamespace=" <import namespace=" <import namespace=" <complextype abstract="true" name="userexception"> <sequence/> </complextype> </schema> </wsdl:types> <wsdl:message name="findbyprimarykeyrequest"> <wsdl:part name="in0" type="xsd:int"/> </wsdl:message> <wsdl:message name="findbyprimarykeyresponse"> <wsdl:part name="findbyprimarykeyreturn" type="impl:employee"/> </wsdl:message> <wsdl:message name="nosuchemployee"> <wsdl:part name="fault" type="impl:nosuchemployee"/> </wsdl:message> <wsdl:porttype name="employeemanager"> <wsdl:operation name="findbyprimarykey" parameterorder="in0"> 10

6 IDL IDL Interface Definition Language ( ) IDL WSDL module Demo { struct Employee { Demo.idl long id; wstring data; }; exception NoSuchEmployee { wstring reason; }; interface EmployeeManager { : Employee findbyprimarykey(in long id) raises(nosuchemployee); }; }; : 11 IDL WSDL Borland VisiBroker 7.0 IDL WSDL JDK Java Development Kit Apache Axis Java2WSDL Web Services Description Language for Java Toolkit WSDL4J JavaMail API Apache Axis JavaBeans Activation Framework JAF Apache Axis 12

7 IDL WSDL IDL idlj.java javac.class Java2WSDL WSDL 13 IDL WSDL JDK idlj, javac, java Apache Axis lib.jar JavaMail API mail.jar JavaBeans Activation Framework activation.jar 14

8 IDL WSDL JDKbin PATH IDL Demo.idl idlj Demo.idl Java c: >idlj Demo.idl findbyprimarykey(int id) Demo.EmployeeManagerOperations Demo EmployeeManagerOperations.java c: >javac Demo EmployeeManagerOperations.java Demo EmployeeManagerOperations.class 15 IDL WSDL Apache Axis Java2WSDL CLASSPATH + Axis lib jar + JavaMail API + JAF c: >set CLASSPATH=.;C: axis-1_4 lib axis.jar;c: axis-1_4 lib axis- ant.jar;c: axis-1_4 lib commons-discovery-0.2.jar;c: axis- 1_4 lib commons-logging jar;c: axis-1_4 lib jaxrpc.jar;c: axis- 1_4 lib log4j jar;c: axis-1_4 lib saaj.jar;c: axis-1_4 lib wsdl4j jar;C: axis-1_4 lib mail.jar;c: axis-1_4 lib activation.jar Java2WSDL Java WSDL c: >java org.apache.axis.wsdl.java2wsdl -o Demo.wsdl -n -l -s EmployeeManager -b EmployeeManagerSoapBinding -P EmployeeManager Demo.EmployeeManagerOperations 16

9 IDL WSDL Java2WSDL -o WSDL : Demo.wsdl -n WSDL XMLnamespace : -l Web URL : WSDL Java : Demo.EmployeeManagerOperations 17 gsoap CGI + Web

10 gsoap WSDL Web gsoap 5 C/C++ SOAP MPL1.1 Windows, UNIX,MacOSX stdsoap2.cpp,stdsoap2.h!! URL: WSDL C/C++ / CGI SSL OpenSSL 19 gsoap C++ SourceForge gsoap win32_2.7.9.zip char* std::wstring <gsoap_dir> typemap.dat # xsd string = char* char* xsd string = std::wstring std::wstring SOAP_ENC string = std::wstring std::wstring Turbo C++ Explorer 20

11 CGI VCL gsoap wsdl2h WSDL Demo.wsdl C Demo.h c: >wsdl2h -t <gsoap_dir> typemap.dat -o Demo.h Demo.wsdl gsoap soapcpp2 Demo.h.cpp,.h c: >soapcpp2 -S -L -I <gsoap_dir> import Demo.h WSDL soapc.cpp wsdl2h ( ) soapserver.cpp soaph.h EmployeeManagerSoapBinding.nsmap soapcpp2 SOAP soapc.cpp soapserver.cpp stdsoap2.cpp gsoap SOAP CGI(.EXE) 21 CGI main Web CGI gsoap : : new delete 22

12 CGI Apache2.0.x CGI CGI CPPServer.exe <Apache_Dir> cgi-bin C cc3270mt.dll IE Web Web SOAP 23 SOAP gsoap

13 VCL gsoap wsdl2h WSDL Demo.wsdl C Demo.h c: >wsdl2h -t <gsoap_dir> typemap.dat -o Demo.h Demo.wsdl gsoap soapcpp2 Demo.h.cpp,.h c: >soapcpp2 -C -L -I <gsoap_dir> import Demo.h soapc.cpp WSDL soapclient.cpp soapemployeemanagersoapbindingproxy.h wsdl2h ( ) EmployeeManagerSoapBinding.nsmap soapcpp2 soapc.cpp soapclient.cpp SOAP stdsoap2.cpp gsoap SOAP 25 main Web Web : Web : (99) 26

14 Web WSDL soapemployeemanagersoapbindingproxy.h Web : service->endpoint = " (ns1 Employee) std::wstring (int) Delphi/BCBGUI WideString 27 POSIX Threads

15 gsoap SOAP gsoapcgi SOAP Apache Web gsoap.exe SOAP 1 Windows Win32 API CreateThread_beginthread UNIX POSIX Threads Pthreads pthread_create 29 WindowsPOSIX Threads Pthreads Win32 API gsoap C/C++ Win32 API POSIX Threads Win32 API Pthreads-Win32 LGPL 30

16 Pthreads-Win ftp://sources.redhat.com/pub/pthreads-win32/pthreads-w release.exe c: pthreads2.7.0 TASM32 c: pthreads2.7.0 pthreads.2 config.h c: pthreads2.7.0 pthreads.2 c: >make -fbmakefile Bmakefile c: pthreads2.7.0 pthreads.2 DLL pthreadbc2.dll pthreadbc2.lib 31 CGI SOAP main localhost80 SOAP SOAP 32

17 CGI SOAP ns1 findbyprimarykey SOAP c: pthreads2.7.0 pthreads.2 pthreadbc2.lib 33 SOAP SOAP SOAP CPPServer.exe C cc3270mt.dll Pthreads-Win32DLL pthreadbc2.dll Web URL : service->endpoint = " gsoap SOAP soap_bind 34

18 SSL OpenSSL SOAP gsoap SSL OpenSSL gsoap stdsoap2.cpp, stdsoap2.h SSL OpenSSL SOAP #ifdef WITH_OPENSSL #endif WITH_OPENSSL define OpenSSL OpenSSL Apache BSD 36

19 OpenSSL OpenSSL make Perl OpenSSL make c: >ms bcb4.bat c: >make fbcb.mak (.h) <OpenSSL_dir> inc32 (.exe) (.lib) <OpenSSL_dir> out32 37 SOAP main OpenSSL OpenSSL SSL SSL

20 SOAP main SSL OpenSSL 39 SOAP OpenSSL OpenSSL OpenSSL gsoap Windows Win32 API Win32 UNIX PThreads PThreads PThreads 40

21 SOAP OpenSSL 41 SOAP OpenSSL Win32PThreads pthead_self Win32 API 42

22 SSL server.pem openssl PEM 43 SSL dh512.pem gsoapsoap_ssl_server_context dh512.pem NULL DHE RSA 44

23 SOAP WITH_OPENSSL <OpenSSL> inc32 OpenSSL libeay32.lib ssleay32.lib SOAP.exe server.pem dh512.pem DHE 45 SOAP SSL SOAP CPPServer.exe C cc3270mt.dll Pthreads-Win32DLL pthreadbc2.dll OpenSSL.EXE IE Web Web URL SOAP SOAP 46

24 SSL OpenSSL SOAP SOAP main OpenSSL SSL OpenSSL 48

25 SOAP OpenSSL SOAP Web URL SSL : service->endpoint = " WITH_OPENSSL <OpenSSL> inc32 OpenSSL libeay32.lib ssleay32.lib SOAP SOAP cacert.pem SOAP.exe 49 SOAP OpenSSL.EXE Ethereal SSL TLS_DHE_RSA_WITH_AES_256_CBC_SHA 50

26 gsoapopenssl gsoapsoapcpp2 / soapc.cpp Web C gsoapopenssl gsoap stdsoap2.cpp OpenSSL OpenSSL 52

27 DelphiVCLSOAP gsoap SSL SOAP Delphi VCL SOAP QualityCentral# IE cacert.pem OK 54

28 Thank you

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

JavaとVisual Basicを使ったWebサービスの実装 JavaVisual Basic Web [email protected] 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

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

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 [email protected] [email protected] 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

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

講座計画書サンプル

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

FileMaker Server Getting Started Guide

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

More information

目次 第 1 章はじめに... 3 第 2 章ネットワーク設定 DNS の設定 アウトバウンド HTTPS 接続の許可 アウトバウンド SMTP/POP 接続の許可... 4 第 3 章 JDK への追加ライブラリインストール

目次 第 1 章はじめに... 3 第 2 章ネットワーク設定 DNS の設定 アウトバウンド HTTPS 接続の許可 アウトバウンド SMTP/POP 接続の許可... 4 第 3 章 JDK への追加ライブラリインストール Durian 4 Filter インストールマニュアル SYMMETRIC 2011 年 11 月 11 日版 目次 第 1 章はじめに... 3 第 2 章ネットワーク設定... 4 2-1 DNS の設定... 4 2-2 アウトバウンド HTTPS 接続の許可... 4 2-3 アウトバウンド SMTP/POP 接続の許可... 4 第 3 章 JDK への追加ライブラリインストール... 5

More information

2 1 5 1.1..................................... 5 2 6 2.1....................................... 6 2.2.......................................... 6 3 8

2 1 5 1.1..................................... 5 2 6 2.1....................................... 6 2.2.......................................... 6 3 8 23 2 1 5 1.1..................................... 5 2 6 2.1....................................... 6 2.2.......................................... 6 3 8 3.1....................................... 8 3.2...............................

More information

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

<4D F736F F D20566F F6E658C6791D FE382C582CC4A D834F E F8F4390B394C52E646F63> [email protected] (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

28th Embarcadero Developer Camp

28th Embarcadero Developer Camp A2 C++ テクニカルセッション C++ 開発者のための 最新プログラミングエッセンス エンバカデロ テクノロジーズエヴァンジェリスト高橋智宏 アジェンダ DLL/dylibを試す C++Builderのパッケージを試す モバイル向けコンパイラでNative[U]Intを試す vector & shared_ptr を試す Delphiの無名スレッド機能をC++ で試す FireMonkeyのプラットフォームサービスを試す

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

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

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

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

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

More information

FileMaker Server 16 インストールおよび構成ガイド

FileMaker Server 16 インストールおよび構成ガイド FileMaker Server 16 2007-2017 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

FileMaker Server 15 入門ガイド

FileMaker Server 15 入門ガイド FileMaker Server 15 2007-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

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8

Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3. Form Cookie...6 2.4....7 2.5. HTTP...7 3. STEPS Web...8 3.1....8 2001/1/11 Web Simplified Techniques for Econometric Plannings & Simulations for WWW Fujiwara Takamichi 97-5075 N-23 Web...1 1....2 1.1....2 1.2....3 1.3. STEPS...4 2. Web...5 2.1. Web...5 2.2....5 2.3.

More information

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

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

More information

FileMaker Server 8 Advanced Web Publishing Installation Guide

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

More information

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

SAP Solution in Detail SAP Business One SAP Business One 1 SAP Business One 5 SAP Business One 5 1 5 5 5 6 6 SAP Business One 6 / 6 / 6 / 7 / 7 / 7 / 7 SAP Business One 8 8 9 9 CRM 9 CRM 10 10 SAP Business

More information

FileMaker Server Getting Started Guide

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

More information

Delphi XE 機能評価ガイド

Delphi XE 機能評価ガイド Delphi XE 2010 9 102-0072 4-7-1 8F TEL 03-4577-4520 FAX 03-6843-0961 / Web Delphi XE Embarcadero Windows Windows 7 Web http://www.embarcadero.com/jp/products/delphi/product-demos Web Delphi FAQ http://www.embarcadero.com/jp/products/delphi

More information

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x

, : GUI Web Java 2.1 GUI GUI GUI 2 y = x y = x y = x J.JSSAC (2005) Vol. 11, No. 3,4, pp. 77-88 Noda2005 MathBlackBoard MathBlackBoard is a Java program based on the blackboard applet. We can use the blackboard applet with GUI operations. The blackboard

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

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

MySQLにおけるシステム運用時のポイント

MySQLにおけるシステム運用時のポイント 2007 Apache JMeter 2007 1 30 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Apache JMeter 2 19 2 14 2 3 19 2 14 Free Apache JMeter 4

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

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL -

intra-mart Web for SellSide ver /03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart Web for SellSide ver3.1.0 2002/03/31 Oracle MS-SQL Server IBM DB2 MS-SQL Server IBM DB2 Client Side JavaScript Server Side JavaScript URL - intra-mart intra-mart intra-mart - 1 - intra-mart

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

More information

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

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

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

FileMaker Server Getting Started Guide

FileMaker Server Getting Started Guide FileMaker Server 14 2007-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

FileMaker Server Getting Started Guide

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

More information

untitled

untitled Grapecity -.NET with GrapeCity - ActiveReports Creation Date: Nov. 30, 2005 Last Update: Nov. 30, 2005 Version: 1.0 Grapecity Microsoft Visual Studio.NET VB.NET Oracle Tips ActiveReports ActiveReports.NET

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

FileMaker Server 9 Getting Started Guide

FileMaker Server 9 Getting Started Guide FileMaker Server 10 2007-2009 FileMaker, Inc. All rights reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker Bento Bento FileMaker, Inc. Mac Mac Apple Inc. FileMaker

More information

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

Microsoft Word - jpluginmanual.doc

Microsoft Word - jpluginmanual.doc TogoDocClient TogoDocClient... i 1.... 1 2. TogoDocClient... 1 2.1.... 1 2.1.1. JDK 5.0... 1 2.1.2. Eclipse... 1 2.1.3.... 1 2.1.4.... 2 2.2.... 3 2.2.1.... 3 2.2.2.... 4 2.3. Eclipse Commands... 5 2.3.1....

More information

Web Tomcat MapDataManager i

Web Tomcat MapDataManager i Tomcat EWEB-4K-N013 Web Tomcat MapDataManager i 1... 1 2 Tomcat4.1.29... 2 2.1 Tomcat... 2 2.2 Apache1.3.29... 3 2.3 IIS5.0... 7 3 FAQ...10 3.1 ISAPI...10 ii 1 Java JDK1.3.1 J2SDK1.4.0 JDK JSDK 1-1 JDK

More information

eDeveloper

eDeveloper Microsoft Windows Vista TM Magic edeveloper V9 Plus Microsoft Windows Vista 1 MSE Magic Software Enterprises Ltd. MSJ Magic Software Japan K.K. MSE MSJ MSE MSJ MSE MSJ MSE MSJ MSE MSJ MSE MSJ Microsoft

More information

Adobe LiveCycle Workbench 11 のインストール

Adobe LiveCycle Workbench 11 のインストール Adobe LiveCycle - Workbench 10 http://help.adobe.com/ja_jp/legalnotices/index.html iii 1 1.1............................................................................................ 1 1.2..............................................................................................................

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

Windows Web Windows Windows WinSock

Windows Web Windows Windows WinSock Windows [email protected] [email protected] 2002 12 4 8 Windows Web Windows Windows WinSock UNIX Microsoft Windows Windows Windows Windows Windows.NET Windows 95 DOS Win3.1(Win16API)

More information

BlueJ 2.0.1 BlueJ 2.0.x Michael Kölling Mærsk Institute University of Southern Denmark Toin University of Yokohama Alberto Palacios Pawlovsky 17 4 4 3 1 5 1.1 BlueJ.....................................

More information

biz-Stream v4 各種機能別動作環境一覧表

biz-Stream v4 各種機能別動作環境一覧表 biz-stream v4 各 種 機 能 別 動 作 環 境 一 覧 表 2016 年 3 月 ライブラリ および COMサーバ 1 4.0.0 4.1.0 4.1.1 4.1.3 0 Java 環 境 JDK/JRE 1.2.2 以 上 (JDK/JRE 1.4.2 以 上 推 奨 ) サウンド 機 能 を 利 用 する 場 合 はJDK/JRE 1.3.1 以 上 JDK/JRE 1.4.2

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

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

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( )

intra-mart ver /10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) ( ) intra-mart ver3.2 2002/10/31 1. / intra-mart 3.2 AND intra-mart (JavaMail ) (2002 3 ) 2. intra-mart ver3.2 intra-mart ver3.2 BMv3.2 intra-mart ver3.2 Java Sun JRE1.3.1(J2EE JDK1.3.1) Web Web intra-mart

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

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

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

XISによる効率良いシステム開発のポイント

XISによる効率良いシステム開発のポイント XML excelon XIS excelon XIS XML April 17, 2002 excelon Extensible Information Server Page 2 Overview XML DOM (XML ) ( ) excelon XIS (DOM ) CRUD ( XML ) amazon.com 2,000 / 100 / GUI / ( 10 ) Windows (NT/2000/XP),

More information

QuickTest Professional対応環境表

QuickTest Professional対応環境表 Hewlett Packard 社 製 品 稼 動 環 境 表 QuickTest Professional 11.00 ( )の 記 載 があるものはパッチ 対 応 です QuickTest Professional 動 作 要 件 CPU Pentium Ⅳ 以 上 の CPU(1GHz 以 上 )を 搭 載 する PC メモリ 1GB 以 上 (2GB 以 上 推 奨 ) ディスク 容 量 アプリケーション

More information

Web2.0 LL Framework Ruby on Rails / TurboGears / CakePHP Atlas Web2.0 XML Selenium / JMeter 3 Ajax Web 2.0 UI... 1. Ruby on Rails Web 2. ASP.NET AJAX,

Web2.0 LL Framework Ruby on Rails / TurboGears / CakePHP Atlas Web2.0 XML Selenium / JMeter 3 Ajax Web 2.0 UI... 1. Ruby on Rails Web 2. ASP.NET AJAX, Web2.0 coopetitive Web2.0 LL Framework Ruby on Rails / TurboGears / CakePHP Atlas Web2.0 XML Selenium / JMeter 3 Ajax Web 2.0 UI... 1. Ruby on Rails Web 2. ASP.NET AJAX, jmaki UI 3. prototype.js JavaScript

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

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

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] )

nopcommerce 2.2 2.1.6 Adobe Flash ( 1 ) 1 nopcommerce 2.2 ( [5, p.3-4] ) nopcommerce 2.2 NopCommerce (Ver.2.3) NopCommerce 2.1.1 (OS) Windows 7 Windows Vista Windows XP Windows Server 2003 Windows Server 2008 2.1.2 Web Internet Information Service (IIS) 6.0 2.1.3 ASP.NET 4.0

More information