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

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

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

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

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

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

はじめに

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

講座計画書サンプル

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

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

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

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

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

untitled

untitled DCMI nagamori@slis.tsukuba.ac.jp DCMI Metadata Schema Registry DCMI Dublin Core Metadata Initiative authoritative source 2004/10/29 2 1 Metadata is the information and documentation which makes data understandable

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

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

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

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

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

More information

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

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

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

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

untitled

untitled 2004 1094 1.... 1 1.1....1 1.2....3 1.3....3 2. POSTGRESQL... 5 2.1. POSTGRESQL DB UNIX...5 2.2. POSTGRESQL DB WINDOWS...8 3. XML... 12 3.1. XINDICE (NATIVE XML DATABASE)... 12 3.2. XINDICE... 12 3.3.

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

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

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

More information

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

untitled

untitled Dell OpenManage IT Assistant 7.0 Version 1.0 2004-2005 Dell Inc. All rights reserved. ... 2... 4...! 1. IT ASSISTANT... 5 1-1.... 5 1-2.... 6 2.... 10 2-1.... 10 2-1-1. SNMP Trap... 10 2-1-2. SNMP Trap...

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

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

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

retool_001-013_intro.indd

retool_001-013_intro.indd Part 1 CHAPTER 1 Part 1 Section 1 1.1. Excel Excel New Application Employee Module Template Responsive CREATE Data Entities Import Entities form Excel... Excel 6 7 Section 1 1-Click Publish Interface Screen

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

untitled

untitled 20 31 5104258 1 1. p 2. p 2.1. p 2.2.i ppli Development Kit for JDK-4.0(FOMA) p 2.3. p 2.4. i p 3. p11 3.1. p12 3.2. IApplication RPG2 p12 3.3. RpgCnav p13 3.4. ScratchPad ImageMap MapData p14 4. p17 5.

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 DSpace Infocom Corporation 1 1... 4 1.1 OS Fedora... 4 1.2 Java Java SE... 4 1.3 Ant ApacheAnt... 4 1.4 PostgreSQL... 4 1.5 Servlet Tomcat... 4 2... 5 2.1 Java SE 1.4.2... 5 2.1.1... 5 2.1.2... 5 2.1.3...

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

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

NEEDS Yahoo! Finance Yahoo! NEEDS MT EDINET XBRL Magnetic Tape NEEDS MT Mac OS X Server, Linux, Windows Operating System: OS MySQL Web Apache MySQL PHP Web ODBC MT Web ODBC LAMP ODBC NEEDS MT PHP: Hypertext

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

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

橡PervasiveSQL2000ReviewersGuide.PDF

橡PervasiveSQL2000ReviewersGuide.PDF Pervasive.SQL 2000 Reviewer s Guide Pervasive.SQL TM 2000 Reviewer s Guide Rev.1 11/99 Pervasive Software Inc. The Freedom to Create Applications for Everyone, Everywhere ...3 Pervasive.SQL 2000...4 Pervasive.SQL

More information

u302.book

u302.book Text Search Filter Library Version 3 3000-6-302-10 P-1MD3-3831* Text Search Filter Library Version 3 03-10 OS AIX 5L V5.2 AIX 5L V5.3 P-24D3-3834 Text Search Filter Library Version 3 03-10 OS Windows 2000

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

Windows2000 Edge Components V Edge Components V Java Edge Components

Windows2000 Edge Components V Edge Components V Java Edge Components WebSphere Application Server V5.1 Edge Components V5.1 / CBR Method Ver. 1.0 - Windows 2000 - 1.... 3 2. Windows2000 Edge Components V5.1... 4 2.1.... 4 2.2.... 4 3. Edge Components V5.1... 5 3.1.... 5

More information

はじめに

はじめに Apache XML/Jakarta/Eclipse/JBoss Java 1 J2EE Java 3 ( ) :) Java Jakarta/Apache XML Apache Apache Software License JBoss/Eclipse LGPL(GNU Lesser General Public Lisence)/CPL (Common Public Lisence) Web EJB

More information

概要

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

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

More information

概要

概要 EWEB-3K-N069 PreSerV For Web Ver5.0 i 1... 1 1.1... 1 1.2... 2 1.2.1 PreSerV For Web Ver.5.0... 2 1.2.2... 2 2... 3 3... 4 3.1... 4 3.2... 4 3.2.1 Java... 4 3.2.2 JAXP... 5 3.2.3 Regexp... 6 3.2.4... 6

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

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

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 Server 9 Getting Started Guide

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

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

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

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

More information

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

未踏成果報告会-fix.key

未踏成果報告会-fix.key BioRuby/ChemRuby http://www.tmd.ac.jp/artsci/biol/textbook/celltop.htm 350 280 210 140 2000 / 1 / 27 70 0 1995 96 97 98 99 2000 01 02 03 04 05 RefSeq PDB PubMed PubChem GenPept EMBL UniProt GenBank

More information

実行形式の作成と構成管理 2012 年 7 月 8 日 海谷治彦 1

実行形式の作成と構成管理 2012 年 7 月 8 日 海谷治彦 1 実行形式の作成と構成管理 2012 年 7 月 8 日 海谷治彦 1 動機付け 大多数の人はプログラムは実行するだけ. プログラム単体で実行できないと困る. 毎回,Eclipse を立ち上げていては困る. 実行可能ファイルの作成 Java に限らず通常, 多数のソースファイル, 外部ライブラリから実行ファイルは構成される. 修正毎に手作業でコンパイルするのはつらい. 開発時と実行時の環境の違い 特に外部ライブラリの配置は開発者マシンと利用者のマシンとでは異なる場合が多い.

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

ISPv30インストールガイド

ISPv30インストールガイド ver5.0 Copyright 2000-2005 ()NTT All rights Reserved. Page 1 2005/06/20 2005/08/26 WebApplication Server Apache 2 Copyright 2000-2005 ()NTT All rights Reserved. Page 2 1... 4 2... 4 3... 5 3.1 JAVAMAIL

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

7th CodeGear Developer Camp

7th CodeGear Developer Camp A6 Delphi テクニカルセッション RTL ソースを利用する Delphi デバッグ技法 CodeGear R&D 有澤雄志 Copyright 2007 CodeGear. All Rights Reserved. 本文書の一部または全部の転載を禁止します 1 アジェンダ RTL の利用準備 IDE から使ってみる Copyright 2007 CodeGear. All Rights Reserved.

More information

QuickTest Professional対応環境表

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

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

untitled

untitled Windows Internet Information Server SQL Server 2 Explorer 3 MMC MMC mmc /a SQL Enterprise Manager IIS 4 MMC 5 MMC 6 Internet Information Server IIS %SystemRoot% system32 Logfiles IIS Web 8 IIS 9 ODBC Windows

More information

UCP Web サービスの使用

UCP Web サービスの使用 CHAPTER 2 この章では User Change Password(UCP)Web サービスを使用するために設定する必要がある環境と この Web サービスの使用方法について説明します UCP Web サービスを使用すると 内部ユーザの認証と 内部ユーザのパスワードの変更が可能です この Web サービスインターフェイスを使用して ACS と社内ポータルを統合し 組織内のユーザが自分のパスワードを変更できるようにします

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

Windows Macintosh 18 Java Windows 21 Java Macintosh

Windows Macintosh 18 Java Windows 21 Java Macintosh 2 2 2 6 6 6 12 16 17 18 Windows Macintosh 18 Java Windows 21 Java Macintosh 23 25 26 26 27 33 34 40 48 55 57 60 Sun Sun Microsystems Java Java Sun Microsystems, Inc. Microsoft Windows Windows Microsoft

More information

file:///D|/C言語の擬似クラス.txt

file:///D|/C言語の擬似クラス.txt 愛知障害者職業能力開発校 システム設計科 修了研究発表会報告書 題名 : C 言語の擬似クラス あらまし : C 言語でクラスを作れるという噂の真偽を確かめるために思考錯誤した まえがき : VC++ や Java その他オブジェクト指向の言語にはクラスが存在して クラスはオブジェクトの設計図である 手法 : C++ のクラスを解析して C++ のクラスを作成して C 言語に翻訳する class struct

More information