Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0

Size: px
Start display at page:

Download "Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0"

Transcription

1 Copyright 2004 NTT DATA Corporation Prepared for JSR-224 F2F meeting Proposed Architecture for Asynchronous Web Services in JAX-RPC 2.0 March 11th, 2004 Toshiyuki KIMURA R&D Headquarters NTT DATA Corporation

2 What's the need for Async Web Services? Synchronous Web Services by using HTTP Web Service impl. Just 1 HTTP connection Request Web Service impl. Blocks future processing Response Easy to build a service end-point and client. Blocking stuff gives us unwelcome events on both client-side and server-side. Unsuitable for long-term process on server-side side 2

3 What's the Async Web Services? Types of Async Web Services Callback type (Push) Request and Response are transferred by two different HTTP connections. The result is pushed back by server-side when the request has been completed. Polling type (Pull) Request and Response are transferred by over two different HTTP connections. The result is picked up by the client with several times of polling. 3

4 How to implement Async Web Services? Polling type of Async Web Services Web service impl. Invoke Invoke Receive Receive ID ID Get Get result result JAX-RPC Order request Get result Web container JAX-RPC End-point JMS Queue / Topic EJB container MDB MDB SLSB SLSB DBMS / EIS J2EE Platform J2EE Platform Issue 1: Server load-up Issue 2: Difficulty of client impl. JMS (Java Message Service) MDB (Message-Driven Bean) SLSB (Stateless Session Bean) 4

5 Measure of issue-1, Server load-up Server sends control info for poll-timing to clients Web Service client impl. Web Service impl. Order request Control info DB A Get result Web Web Service Service <asyncworkflow> <asyncstaticparam> <firstinteval> </firstInterval> <iterateinterval> </iterateInterval> <timeoutinterval> </timeoutInterval> <maxretrycount>50</maxretrycount> </asyncstaticparam> <asyncworkflow> C B Server gets the initiative to control its QoS. 5

6 Measure for issue-2, difficulty of client impl. Create a utility layer for Async Web Services Web Service impl. Invoke Invoke Get Get result result APIs (Sync/Async) Utility layer Timer manger JAX-RPC J2EE Platform Control info manager Main controller Status manger Web Service impl. JAX-RPC J2EE Platform 6

7 Feasibility Study of Async Web Services impl. [Legend] Existing Web Service Enhanced Async API Sync API J2EE Platform Workflow control AXIS Com. layer AXIS Com. layer 7

8 The result of the Feasibility Study (1/4) Benefit #1 Before // 処理要求用の設定 Servcie service = new Service(serviceName); // 処理要求用の設定 Call call = service.createcall(); Servcie service = new Service(serviceName); call.setoperationname(startoperationname); Call call = service.createcall(); call.addparameter("in0", XMLType.XSD_STRING,ParameterMode.IN); call.setoperationname(startoperationname); call.addparameter("in1", XMLType.XSD_LONG,ParameterMode.IN); call.addparameter("in0", XMLType.XSD_STRING,ParameterMode.IN); call.setreturntype(xsd_any); call.addparameter("in1", XMLType.XSD_LONG,ParameterMode.IN); call.settargetendpointaddress(endpointurl); call.setreturntype(xsd_any); call.setmaintainsession(true); call.settargetendpointaddress(endpointurl); call.invoke(new Object[]{"HELLO", new Integer(10));// 処理要求呼び出し call.setmaintainsession(true); call.invoke(new Object[]{"HELLO", new Integer(10));// 処理要求呼び出し // パーサの準備 try{ // パーサの準備 DocumentBuilderFactory d = DocumentBuilderFactory.newInstance(); try{ DocumentBuilderFactory factory = new org.apache.xerces.jaxp.documentbuilderfactoryimpl(); DocumentBuilderFactory d = DocumentBuilderFactory.newInstance(); boolean isvalidate = true; DocumentBuilderFactory factory = new org.apache.xerces.jaxp.documentbuilderfactoryimpl(); factory.setvalidating(isvalidate); boolean isvalidate = true; factory.setnamespaceaware(true); factory.setvalidating(isvalidate); factory.setattribute(" Boolean(true)); factory.setnamespaceaware(true); builder = factory.newdocumentbuilder(); factory.setattribute(" Boolean(true)); builder.seterrorhandler(new ValidationErrorHandler()); builder = factory.newdocumentbuilder(); catch(parserconfigurationexception e){ builder.seterrorhandler(new ValidationErrorHandler()); throw new InternalException(e); catch(parserconfigurationexception e){ throw new InternalException(e); // ヘッダ要素の抽出開始 MessageContext msgcontext = call.getmessagecontext(); // ヘッダ要素の抽出開始 Message msg = (Message)msgContext.getMessage(); MessageContext msgcontext = call.getmessagecontext(); SOAPEnvelope envelope = msg.getsoapenvelope(); Message msg = (Message)msgContext.getMessage(); SOAPHeaderElement asyncsoapheader = envelope.getheaderbyname(constants.asyncsoap_ns,constants.asyncsoapheader_local); SOAPEnvelope envelope = msg.getsoapenvelope(); MessageElement asyncsoapelement = (MessageElement)asyncSOAPHeader.getChildren().get(0); SOAPHeaderElement asyncsoapheader = envelope.getheaderbyname(constants.asyncsoap_ns,constants.asyncsoapheader_local); Document headerdoc = asyncsoapelement.getasdocument(); MessageElement asyncsoapelement = (MessageElement)asyncSOAPHeader.getChildren().get(0); String headerstring = new XMLUtils().DocumentToString(headerDoc); Document headerdoc = asyncsoapelement.getasdocument(); ByteArrayInputStream headerstream = new ByteArrayInputStream(headerString.getBytes()); String headerstring = new XMLUtils().DocumentToString(headerDoc); builder.parse(headerstream);// パース ByteArrayInputStream headerstream = new ByteArrayInputStream(headerString.getBytes()); headerstream.close(); builder.parse(headerstream);// パース // ステータスを取得 headerstream.close(); Element asyncserverstatuselement = (Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCSERVERSTATUS_LOCAL).item(0); // ステータスを取得 Element asyncworkflowelement =(Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCWORKFLOW_LOCAL).item(0); Element asyncserverstatuselement = (Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCSERVERSTATUS_LOCAL).item(0); String statuscode = asyncserverstatuselement.getelementsbytagname(constants.statuscode_local).item(0).getfirstchild().getnodevalue(); Element asyncworkflowelement =(Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCWORKFLOW_LOCAL).item(0); String statusstring = asyncserverstatuselement.getelementsbytagname(constants.statusstring_local).item(0).getfirstchild().getnodevalue(); String statuscode = asyncserverstatuselement.getelementsbytagname(constants.statuscode_local).item(0).getfirstchild().getnodevalue(); Element detail = (Element)asyncServerStatusElement.getElementsByTagName(Constants.DETAIL_LOCAL).item(0); String statusstring = asyncserverstatuselement.getelementsbytagname(constants.statusstring_local).item(0).getfirstchild().getnodevalue(); NodeList asyncstaticparamnodelist = headerdoc.getelementsbytagname(constants.asyncstaticparam_local); Element detail = (Element)asyncServerStatusElement.getElementsByTagName(Constants.DETAIL_LOCAL).item(0); // 静的パラメータを取得 NodeList asyncstaticparamnodelist = headerdoc.getelementsbytagname(constants.asyncstaticparam_local); Element asyncstaticparamelement = (Element)asyncStaticParamNodeList.item(0); // 静的パラメータを取得 Text firstintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.FIRSTINTERVAL_LOCAL).item(0).getFirstChild(); Element asyncstaticparamelement = (Element)asyncStaticParamNodeList.item(0); long firstinterval = Long.parseLong(firstIntervalText.getNodeValue()); Text firstintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.FIRSTINTERVAL_LOCAL).item(0).getFirstChild(); Text iterateintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.ITERATEINTERVAL_LOCAL).item(0).getFirstChild(); long firstinterval = Long.parseLong(firstIntervalText.getNodeValue()); long iterateinterval = Long.parseLong(iterateIntervalText.getNodeValue()); Text iterateintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.ITERATEINTERVAL_LOCAL).item(0).getFirstChild(); Text timeoutintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.TIMEOUTINTERVAL_LOCAL).item(0).getFirstChild(); long iterateinterval = Long.parseLong(iterateIntervalText.getNodeValue()); long timeoutinterval = Long.parseLong(timeoutIntervalText.getNodeValue()); Text timeoutintervaltext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.TIMEOUTINTERVAL_LOCAL).item(0).getFirstChild(); Text maxretrycounttext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.MAXRETRYCOUNT_LOCAL).item(0).getFirstChild(); long timeoutinterval = Long.parseLong(timeoutIntervalText.getNodeValue()); int maxretrycount = Integer.parseInt(maxRetryCountText.getNodeValue()); Text maxretrycounttext = (Text)asyncStaticParamElement.getElementsByTagName(Constants.MAXRETRYCOUNT_LOCAL).item(0).getFirstChild(); int maxretrycount = Integer.parseInt(maxRetryCountText.getNodeValue()); // ポーリング用の準備 Call pollingcall = service.createcall(); // ポーリング用の準備 pollingcall.setoperationname(endoperationname); Call pollingcall = service.createcall(); pollingcall.setreturntype(xsd_string); pollingcall.setoperationname(endoperationname); pollingcall.setreturntype(xsd_string); // 第一回目のポーリングまで待機 Thread.sleep(firstInterval * 1000);// 待機 // 第一回目のポーリングまで待機 Thread.sleep(firstInterval * 1000);// 待機 // ポーリングのループ開始 boolean completed = false;// 処理完了フラグ // ポーリングのループ開始 int loop_count = 0; boolean completed = false;// 処理完了フラグ while(completed){// 処理が完了するまでループ int loop_count = 0; Object ret = pollingcall.invoke(new Object[]{"HELLO", new Integer(10));// 結果確認呼び出し while(completed){// 処理が完了するまでループ loop_count++; Object ret = pollingcall.invoke(new Object[]{"HELLO", new Integer(10));// 結果確認呼び出し // ヘッダ要素の抽出開始 loop_count++; MessageContext msgcontext = call.getmessagecontext(); // ヘッダ要素の抽出開始 Message msg = (Message)msgContext.getMessage(); MessageContext msgcontext = call.getmessagecontext(); SOAPEnvelope envelope = msg.getsoapenvelope(); Message msg = (Message)msgContext.getMessage(); SOAPHeaderElement asyncsoapheader = envelope.getheaderbyname(constants.asyncsoap_ns,constants.asyncsoapheader_local); SOAPEnvelope envelope = msg.getsoapenvelope(); MessageElement asyncsoapelement = (MessageElement)asyncSOAPHeader.getChildren().get(0); SOAPHeaderElement asyncsoapheader = envelope.getheaderbyname(constants.asyncsoap_ns,constants.asyncsoapheader_local); Document headerdoc = asyncsoapelement.getasdocument(); MessageElement asyncsoapelement = (MessageElement)asyncSOAPHeader.getChildren().get(0); String headerstring = new XMLUtils().DocumentToString(headerDoc); Document headerdoc = asyncsoapelement.getasdocument(); ByteArrayInputStream headerstream = new ByteArrayInputStream(headerString.getBytes()); String headerstring = new XMLUtils().DocumentToString(headerDoc); builder.parse(headerstream); ByteArrayInputStream headerstream = new ByteArrayInputStream(headerString.getBytes()); headerstream.close(); builder.parse(headerstream); // パラメータの抽出 headerstream.close(); Element asyncserverstatuselement = (Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCSERVERSTATUS_LOCAL).item(0); // パラメータの抽出 Element asyncworkflowelement =(Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCWORKFLOW_LOCAL).item(0); Element asyncserverstatuselement = (Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCSERVERSTATUS_LOCAL).item(0); String statuscode = asyncserverstatuselement.getelementsbytagname(constants.statuscode_local).item(0).getfirstchild().getnodevalue(); Element asyncworkflowelement =(Element)headerDoc.getElementsByTagNameNS(Constants.ASYNCSOAP_NS, Constants.ASYNCWORKFLOW_LOCAL).item(0); String statusstring = asyncserverstatuselement.getelementsbytagname(constants.statusstring_local).item(0).getfirstchild().getnodevalue(); String statuscode = asyncserverstatuselement.getelementsbytagname(constants.statuscode_local).item(0).getfirstchild().getnodevalue(); Element detail = (Element)asyncServerStatusElement.getElementsByTagName(Constants.DETAIL_LOCAL).item(0); String statusstring = asyncserverstatuselement.getelementsbytagname(constants.statusstring_local).item(0).getfirstchild().getnodevalue(); // ステータスの確認 Element detail = (Element)asyncServerStatusElement.getElementsByTagName(Constants.DETAIL_LOCAL).item(0); if(!statuscode.equals("running")){ // ステータスの確認 completed = true; if(!statuscode.equals("running")){ completed = true; // 最大リトライ数のチェック if(loop_count >= maxretrycount){ // 最大リトライ数のチェック throw new Exception(" 最大ポーリング回数を超過しました."); if(loop_count >= maxretrycount){ throw new Exception(" 最大ポーリング回数を超過しました."); Thread.sleep(iterateInterval * 1000); Thread.sleep(iterateInterval * 1000); // 結果の表示 System.out.println("return : " + ret); // 結果の表示 System.out.println("return : " + ret); 75 lines After // ポーリングによる実装例 // ポーリングによる実装例 ServiceFactory factory = ServiceFactory.newInstance(); ServiceFactory factory = ServiceFactory.newInstance(); Service service = ServiceFactory.createService(serviceName); Service service = ServiceFactory.createService(serviceName); Call call = service.createcall(); Call call = service.createcall(); call.setoperationname(new QName(targetNS, operationname)); call.setoperationname(new QName(targetNS, operationname)); call.settargetendpointaddress(endpointurl); call.settargetendpointaddress(endpointurl); call.addparameter("in0", XMLType.XSD_STRING, ParameterMode.IN); call.addparameter("in0", XMLType.XSD_STRING, ParameterMode.IN); call.addparameter("in1", XMLType.XSD_LONG, ParameterMode.IN); call.addparameter("in1", XMLType.XSD_LONG, ParameterMode.IN); call.setreturntype(xmltype.xsd_string); call.setreturntype(xmltype.xsd_string); call.setoperationmodel(operationmodel.async_pull); call.setoperationmodel(operationmodel.async_pull); call.invokeasync(new Object[]{inputData); call.invokeasync(new Object[]{inputData); long pollinginterval = 2000; long pollinginterval = 2000; AsyncStatus status = call.getasyncstatus(); AsyncStatus status = call.getasyncstatus(); while(status.isrunnging()){ while(status.isrunnging()){ Thread.sleep(pollingInterval); Thread.sleep(pollingInterval); status = call.getasyncstatus(); status = call.getasyncstatus(); String ret = (String)call.getAsyncReturnValue(); String ret = (String)call.getAsyncReturnValue(); System.out.println(ret); System.out.println(ret); Just 17 lines Reduces user implementation about 4.5 times. 8

9 The result of the Feasibility Study (2/4) Benefit #2 Web Service impl. Sync Sync One-way One-way Async Async JAX-RPC 1.0, 1.1 Call. Invoke () Call. invokeoneway () { Call. invokeasync ()? JAX-RPC 2.0 Sync/Async Interface An asynchronous invocation will be possible at the usage according to the existing synchronous type API. 9

10 The result of the Feasibility Study (3/4) Benefit #3 Web Service client impl. Web service impl. Async Async API API Callback Callback API API Polling Polling API API Sync/Async Interface Sync Sync WS WS Polling Polling WS WS The access model of API layer and transport layer is separated, completely. 10

11 The result of the Feasibility Study (4/4) Benefit #4 Web Service client impl. Web Service impl. Order request Control info DB A Get result Web Web Service Service <asyncworkflow> <asyncstaticparam> <firstinteval> </firstInterval> <iterateinterval> </iterateInterval> <timeoutinterval> </timeoutInterval> <maxretrycount>50</maxretrycount> </asyncstaticparam> <asyncworkflow> C B Server gets the initiative to control its QoS. 11

12 Conclusion Three levels to support asynchronous Web Services Level1: -side only (Microsoft has already supported it as Delegate.) Level2: Both -side and Server-side except the poll timing control (Some of vendors has tried to support it in their own products by the original way.) Level3: Both -side and Server-side with the poll timing control (This is my proposal.) 12

13 ー The End - Thank you for your attention. 13

JR SHIKOKU_Wi Fi Connection Guide

JR SHIKOKU_Wi Fi Connection Guide JR SHIKOKU_Wi Fi Connection Guide Ver1.0 June, 2018 Procedure to connect JR SHIKOKU_Station_Wi Fi Wireless LAN info SSID :JR SHIKOKU_Station_Wi Fi IP Address: Acquired automatically DNS Address:Acquired

More information

Lecture 4 Branch & cut algorithm

Lecture 4 Branch & cut algorithm Lecture 4 Branch & cut algorithm 1.Basic of branch & bound 2.Branch & bound algorithm 3.Implicit enumeration method 4.B&B for mixed integer program 5.Cutting plane method 6.Branch & cut algorithm Slide

More information

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.

Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem. Imports MySql.Data.MySqlClient Imports System.IO Public Class FrmMst Private Sub 終了 XToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles 終了 XToolStripMenuItem.Click

More information

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software For evaluation only.

サーブレットと Android との連携. Generated by Foxit PDF Creator Foxit Software   For evaluation only. サーブレットと Android との連携 Android からサーブレットへの GET リクエスト Android からサーブレットにリクエストを出すには スレッドを使わなければなりません 枠組みは以下のようになります Android 側 * Hello JSON package jp.ac.neec.kmt.is04.takata; import の記述 public class HelloJsonActivity

More information

API サーバの URL. <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM "

API サーバの URL. <?xml version=1.0 encoding=utf-8?> <!DOCTYPE COMPLIANCE_SCAN SYSTEM Policy Compliance PC スキャン結果の XML Policy Compliance(PC) スキャンの結果は ユーザインタフェースのスキャン履歴リストから XML 形式でダウンロードできます UI からダウンロードした XML 形式の PC スキャン結果には その他のサポートされている形式 (PDF HTML MHT および CSV) の PC スキャン結果と同じ内容が表示されます

More information

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic

電脳梁山泊烏賊塾 構造体のサイズ. Visual Basic 構造体 構造体のサイズ Marshal.SizeOf メソッド 整数型等型のサイズが定義されて居る構造体の場合 Marshal.SizeOf メソッドを使う事に依り型のサイズ ( バイト数 ) を取得する事が出来る 引数に値やオブジェクトを直接指定するか typeof や GetType で取得した型情報を渡す事に依り 其の型のサイズを取得する事が出来る 下記のプログラムを実行する事に依り Marshal.SizeOf

More information

Yamaha Steinberg USB Driver V for Mac Release Notes

Yamaha Steinberg USB Driver V for Mac Release Notes Yamaha Steinberg USB Driver V1.10.2 for Mac Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

ユーザー入力およびユーザーに 出力処理入門. Ivan Tanev

ユーザー入力およびユーザーに 出力処理入門. Ivan Tanev プログラミング III 第 5 回 :JSP 入門. ユーザー入力およびユーザーに 出力処理入門 Ivan Tanev 講義の構造 1.JSP 入門 2. ユーザー入力およびユーザーに出力処理入門 3. 演習 2 Lecture3_Form.htm 第 3 回のまとめ Web サーバ Web 1 フォーム static 2 Internet サ3 ーブレ4 HTML 5 ットテキスト dynamic

More information

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する

Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する Unofficial Redmine Cooking - QA #782 yaml_db を使った DB のマイグレーションで失敗する 2018/03/26 10:04 - Tamura Shinji ステータス : 新規開始日 : 2018/03/26 優先度 : 通常期日 : 担当者 : 進捗率 : 0% カテゴリ : 予定工数 : 0.00 時間 対象バージョン : 作業時間 : 0.00 時間

More information

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */

2007/10/17 ソフトウェア基礎課題布広. /** * SOFT * AppletTest01.java * 文字表示 */ 演習コメントを参考にして を埋めてアプレットプログラムを実行させてみよ * SOFT 120 01 * AppletTest01.java * 文字表示 //java の applet 定義 // 文字 絵を描くのに必要な Graphics を定義 public

More information

グラフを表すデータ構造 JAVA での実装

グラフを表すデータ構造 JAVA での実装 グラフを表すデータ構造 JAVA での実装 グラフの構造を記述するクラス パッケージgraphLib graphlib.graph グラフ全体 graphlib.vertex 頂点 頂点を始点とする弧 頂点を2 次元面に表示するための座標 graphlib.arc 弧の始点と終点 クラスの関係 グラフ 弧一覧 弧 弧 頂点 弧 頂点一覧 頂点 頂点 写像 + 頂点 写像 頂点 写像 δ + GRAPH

More information

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11

本書について... 7 本文中の表記について... 7 マークについて... 7 MTCE をインストールする前に... 7 ご注意... 7 推奨 PC 仕様... 8 MTCE をインストールする... 9 MTCE をアンインストールする... 11 Installation Guide FOR English 2 About this guide... 2 Notations used in this document... 2 Symbols... 2 Before installing MTCE... 2 Notice... 2 Recommended computer specifications... 3 Installing MTCE...

More information

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool

PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Installation Guide - 日本語 PCIe SSD PACC EP P3700 Intel Solid-State Drive Data Center Tool Software Version 2.x 2015 年 4 月 富士通株式会社 1 著作権および商標 Copyright 2015 FUJITSU LIMITED 使用されているハードウェア名とソフトウェア名は 各メーカーの商標です

More information

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment

BABr11.5 for Linux のインストール 2007/12/21. You are running Linux on Kernel smp. Analyzing the environment BABr11.5 for Linux のインストール 2007/12/21 ここでは BrightStore ARCserve Backup 11.5 for Linux のインストール手順を説明します 前提条件 1) HTTP サーバが動作している必要があります YaST > Networks Service > HTTP Server を開き HTTP サービスが動作しているか確認してください

More information

Web Billing User Guide

Web Billing User Guide Web Billing User Guide ( Smart Phone ) This guide describes how to use Web Billing service provided by NTT Finance. Your display on the screen may vary depending on the payment methods you have. Contents

More information

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix

Cloud Connector 徹底解説. 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア. 哲司 (Satoshi Komiyama) Citrix 1 2017 Citrix Cloud Connector 徹底解説 多様な基盤への展開を可能にするための Citrix Cloud のキーコンポーネント A-5 セールスエンジニアリング本部パートナー SE 部リードシステムズエンジニア 小宮山 哲司 (Satoshi Komiyama) 2 2017 Citrix このセッションのもくじ Cloud Connector 徹底解説 Cloud Connector

More information

#include <machine.h> #include "vect.h" #pragma section IntPRG. // Exception(Supervisor Instruction) void Excep_SuperVisorInst(void){/* brk(){ } */}

#include <machine.h> #include vect.h #pragma section IntPRG. // Exception(Supervisor Instruction) void Excep_SuperVisorInst(void){/* brk(){ } */} // / / / FILE :intprg.c / / DATE :Mon, Mar 11, 2013 / / DESCRIPTION :Interrupt Program / CPU TYPE :RX210 / / / / / This file is generated by Renesas Project Generator (Ver.4.53). / / NOTE:THIS IS A TYPICAL

More information

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original.

暗い Lena トーンマッピング とは? 明るい Lena. 元の Lena. tone mapped. image. original. image. tone mapped. tone mapped image. image. original image. original. 暗い Lena トーンマッピング とは? tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) / 2 original 元の Lena 明るい Lena tone mapped 画素値 ( ) output piel value input piel value 画素値 ( ) tone mapped 画素値 ( ) output

More information

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境

MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 MySQL Cluster 7.3 リリース記念!! 5 分で作る MySQL Cluster 環境 日本オラクル株式会社山崎由章 / MySQL Senior Sales Consultant, Asia Pacific and Japan 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. New!! 外部キー

More information

Androidプログラミング 2 回目 迫紀徳

Androidプログラミング 2 回目 迫紀徳 Androidプログラミング 2 回目 迫紀徳 前回の復習もかねて BMI 計算アプリを作ってみよう! 2 3 BMI の計算方法 BMI = 体重 [kg] 身長 [m] 2 状態も表示できると GOOD 状態低体重 ( 痩せ型 ) 普通体重肥満 (1 度 ) 肥満 (2 度 ) 肥満 (3 度 ) 肥満 (4 度 ) 指標 18.5 未満 18.5 以上 25 未満 25 以上 30 未満 30

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. SC-02L の SAR / About SAR of SC-02L ( 本語 ) この機種 SC-02L の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライ ンに適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

Methods to Detect Malicious MS Document File using File Structure Inspection

Methods to Detect Malicious MS Document File using File Structure Inspection MS 1,a) 2,b) 2 MS Rich Text Compound File Binary MS MS MS 98.4% MS MS Methods to Detect Malicious MS Document File using File Structure Inspection Abstract: Today, the number of targeted attacks is increasing,

More information

Certificate of Accreditation

Certificate of Accreditation PERRY JOHNSON LABORATORY ACCREDITATION, INC. Certificate of Accreditation Perry Johnson Laboratory Accreditation, Inc. has assessed the Laboratory of: System One Co., Ltd. 1208-1 Otai, Saku-shi, Nagano

More information

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M.

フラクタル 1 ( ジュリア集合 ) 解説 : ジュリア集合 ( 自己平方フラクタル ) 入力パラメータの例 ( 小さな数値の変化で模様が大きく変化します. Ar や Ai の数値を少しずつ変化させて描画する. ) プログラムコード. 2010, AGU, M. フラクタル 1 ( ジュリア集合 ) PictureBox 1 TextBox 1 TextBox 2 解説 : ジュリア集合 ( 自己平方フラクタル ) TextBox 3 複素平面 (= PictureBox1 ) 上の点 ( に対して, x, y) 初期値 ( 複素数 ) z x iy を決める. 0 k 1 z k 1 f ( z) z 2 k a 写像 ( 複素関数 ) (a : 複素定数

More information

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones

携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 携帯電話の 吸収率 (SAR) について / Specific Absorption Rate (SAR) of Mobile Phones 1. Z-01K の SAR / About SAR of Z-01K ( 本語 ) この機種 Z-01K の携帯電話機は 国が定めた電波の 体吸収に関する技術基準および電波防護の国際ガイドライン に適合しています この携帯電話機は 国が定めた電波の 体吸収に関する技術基準

More information

Structured Report Implement rev2.1. Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20

Structured Report Implement rev2.1. Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20 Structured Report Implement rev2.1 Konica Minolta Medical & Graphic Inc. R&D Center Software Development Division Hiroyuki KUBOTA 2006/7/20 Contents SINR IHE Profile レポート系プロファイル SINR-Diagram SINR Actors

More information

Quick Install Guide. Adaptec SCSI RAID 2120S Controller

Quick Install Guide. Adaptec SCSI RAID 2120S Controller Quick Install Guide Adaptec SCSI RAID 2120S Controller The Adaptec SCSI Raid (ASR) 2120S Controller is supported on the HP Workstation xw series with Microsoft Windows 2000 and Windows XP operating systems

More information

~ ソフトウエア認証への取り組みと課題 ~

~ ソフトウエア認証への取り組みと課題 ~ 第 1 回航空機装備品認証技術オープンフォーラム ~ ソフトウエア認証への取り組みと課題 ~ 2019 年 3 月 14 日 The information in this document is the property of Sumitomo Precision Products Co.,LTD.(SPP) and may not be duplicated, or disclosed to any

More information

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining

Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Chapter 3 Visualization Studies of Large-Scale Data Visualization: EXTRAWING and Visual Data Mining Project Representative Fumiaki Araki Earth Simulator Center, Japan Agency for Marine-Earth Science and

More information

https://login.microsoftonline.com/ /oauth2 Protected API Your Client App Your Client App Your Client App Microsoft Account v2.0 endpoint Unified AuthN/Z endpoint Outlook.com (https://login.microsoftonline.com/common/oauth2/v2.0)

More information

Web Design and Applications

Web Design and Applications Web Design and Applications JEE, Message-Driven Beans Gheorghe Aurel Pacurar JEE, Message-Driven Beans Java Message Service - JMS Server JMS is a standard Java API that allows applications to create, send,

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.10.4 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

RICOH s Layout Engine can correctly display Thai, Arabic,Vietnamese and Hindi with complex grammar rules. Reading in this direction

RICOH s Layout Engine can correctly display Thai, Arabic,Vietnamese and Hindi with complex grammar rules. Reading in this direction Layout Engine RICOH s Layout Engine can correctly display Thai, Arabic,Vietnamese and Hindi with complex grammar rules. Arabic Reading in this direction Hebrew Thai Reading in this direction Reading in

More information

Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶

Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶 Android + TIBBO + Socket 建國科技大學資管系 饒瑞佶 Socket Socket 開始前 TIBBO 需要設定 Socket on_sock_data_arrival() ' 接收外界來的 SOCKET 資訊 sub on_sock_data_arrival() Dim command_data as string ' 完整控制命令 command_data = "" ' 初始化控制命令

More information

サンプル. NI TestStand TM I: Introduction Course Manual

サンプル. NI TestStand TM I: Introduction Course Manual NI TestStand TM I: Introduction Course Manual Course Software Version 4.1 February 2009 Edition Part Number 372771A-01 NI TestStand I: Introduction Course Manual Copyright 2009 National Instruments Corporation.

More information

CO Java EE 7: Back-End Server Application Development

CO Java EE 7: Back-End Server Application Development CO-85116 Java EE 7: Back-End Server Application Development Summary Duration 5 Days Audience Application Developers, Developers, J2EE Developers, Java Developers and System Integrators Level Professional

More information

Web 成績登録システム利用の手引き ( 改訂版 )

Web 成績登録システム利用の手引き ( 改訂版 ) Web 成績登録システム利用の手引き ( 改訂版 ) Manual for the Online Entry of Grades 大阪国際大学 大阪国際大学短期大学部 Revised on July 4 th, 2011 Outline of Procedures for the Web Entry of Grades 1 Go to the OIU web page at http://www.oiu.ac.jp/

More information

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan

IRS16: 4 byte ASN. Version: 1.0 Date: April 22, 2008 Cisco Systems 2008 Cisco, Inc. All rights reserved. Cisco Systems Japan IRS16: 4 byte ASN Version: 1.0 Date: April 22, 2008 Cisco Systems hkanemat@cisco.com 1 目次 4 byte ASN の対応状況 運用での変更点 2 4 byte ASN の対応状況 3 4 byte ASN の対応状況 IOS XR 3.4 IOS: 12.0S 12.2SR 12.2SB 12.2SX 12.5T

More information

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより

Googleの強みは ささえるのは世界一のインフラ. Google File System 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング. 初期(1999年)の Googleクラスタ. 最近のデータセンタ Google Chrome Comicより Googleの強みは 2008年度後期 情報システム構成論2 第10回 クラウドと協調フィルタリング 西尾 信彦 nishio@cs.ritsumei.ac.jp 立命館大学 情報理工学部 Cloud Computing 全地球規模で構成された圧倒的なPCクラスタ 部分的な機能不全を補う機能 あらゆる種類の情報へのサービスの提供 Web上の 全 情報 地図情報 (実世界情報) どのように利用されているかを機械学習

More information

Yamaha Steinberg USB Driver V for Windows Release Notes

Yamaha Steinberg USB Driver V for Windows Release Notes Yamaha Steinberg USB Driver V1.9.11 for Windows Release Notes Contents System Requirements for Software Main Revisions and Enhancements Legacy Updates System Requirements for Software - Note that the system

More information

Introduction to Information and Communication Technology (a)

Introduction to Information and Communication Technology (a) Introduction to Information and Communication Technology (a) 6 th week: 1.5 Information security and management Kazumasa Yamamoto Dept. Computer Science & Engineering Introduction to ICT(a) 6th week 1

More information

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目

今日の予定 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図. 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 今日の予定 このミステリー (?) の中でメイントリックに使われました! 1. 展開図の基礎的な知識 1. 正多面体の共通の展開図 2. 複数の箱が折れる共通の展開図 :2 時間目 3. Rep-Cube: 最新の話題 4. 正多面体に近い立体と正 4 面体の共通の展開図 5. ペタル型の紙で折るピラミッド型 :2 時間目 ~3 時間目 Some nets are available at http://www.jaist.ac.jp/~uehara/etc/origami/nets/index-e.html

More information

Quick Installation Manual

Quick Installation Manual Safety Light Curtain F3SG- RA Series http://www.ia.omron.com/f3sg-r Quick Installation Manual Document Title Safty Light Curtain /RE Series User's Manual Cat. No. Z352-E1 OMRON Corporation 2014-2018 All

More information

Certificate of Accreditation

Certificate of Accreditation PERRY JOHNSON LABORATORY ACCREDITATION, INC. Certificate of Accreditation Perry Johnson Laboratory Accreditation, Inc. has assessed the Laboratory of: NOISE LABORATORY CO., LTD. Customer Service Center

More information

Introduction to the Himawari-8 Atmospheric Motion Vector Algorithm

Introduction to the Himawari-8 Atmospheric Motion Vector Algorithm Introduction to the Himawari-8 Atmospheric Motion Vector Algorithm SHIMOJI Kazuki * Abstract Meteorological Satellite Center of the Japan Meteorological Agency (JMA/MSC) began operation of its third-generation

More information

PSLT Adobe Typekit Service (2016v1.1)

PSLT Adobe Typekit Service (2016v1.1) 1. Typekit Service. 1.1 Desktop Publishing. Page 1 of 2 (A) Customer may only use Typekit Desktop (including any Distributed Code that Adobe permits to be synced or otherwise made available to Customer

More information

BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン

BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン BMW Head Up Display (HUD) Teardown BMW ヘッドアップディスプレイティアダウン FEATURES: 製品の特徴 Head Up Display Socionext MB88F333BA 3.15-inch WVGA IPS LCD Techno Solutions Manufacturer Nippon Seiki Model Number 6230-9 367

More information

AMSC Co.Ltd. Development Section

AMSC Co.Ltd. Development Section 2001/Oct/09 th Rev.0.1 2001/Oct/18 th Rev.0.2 2001/Dec/28 th Rev.0.3 2002/Feb/28 th Rev.0.4 2002/Mar/22 th Rev.0.5 AMSC Co.Ltd. Development Section 1, 64ch AMT-VME Moduleは 1ns/bit 以下での測定が可能な精密時間測定用モジュールである

More information

此処 夏? プログラムの概要 VB マウストレーニングソフト 此処 夏? で有る 無人島に取り残された女の子を マウスでドラッグして浅瀬を通り 椰子の島に導いて行く 一般的に 実用プログラムに比較するとゲームプログラムは 高度なテクニックを要求される事が多い

此処 夏? プログラムの概要 VB マウストレーニングソフト 此処 夏? で有る 無人島に取り残された女の子を マウスでドラッグして浅瀬を通り 椰子の島に導いて行く 一般的に 実用プログラムに比較するとゲームプログラムは 高度なテクニックを要求される事が多い 此処 夏? VB 2005 49 プログラムの概要 マウストレーニングソフト 此処 夏? で有る 無人島に取り残された女の子を マウスでドラッグして浅瀬を通り 椰子の島に導いて行く 一般的に 実用プログラムに比較するとゲームプログラムは 高度なテクニックを要求される事が多い 此処では ゲームプログラムを作成する事に依り 楽しみ乍ら プログラムの制作手順を習得する事を目的として居る 制作手順としては

More information

J の Lab システムの舞台裏 - パワーポイントはいらない -

J の Lab システムの舞台裏 - パワーポイントはいらない - JAPLA 研究会資料 2011/6/25 J の Lab システムの舞台裏 - パワーポイントはいらない - 西川利男 学会の発表などでは 私は J の Lab を活用している 多くの人が使っているパワーポイントなぞ使う気にはならない J の Lab システムは会場の大きなスクリーンで説明文書が出来ることはもちろんだが システム自身が J の上で動いていることから J のプログラムが即実行出来て

More information

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ]

Agilent. IO Libraries Suite 16.3/16.2 簡易取扱説明書. [ IO Libraries Suite 最新版 ] Agilent IO Libraries Suite 16.3/16.2 簡易取扱説明書 この簡易取扱説明書は Agilent IO Libraries Suite 16.3 / 16.2 ( 以後 IO Lib. ) の簡易説明書です 詳細につきましては各 Help や下記の弊社 web をご参照ください [ IO Libraries Suite 最新版 ] http://www.agilent.com/find/iolib

More information

PRODUCT DESCRIPTIONS AND METRICS

PRODUCT DESCRIPTIONS AND METRICS PRODUCT DESCRIPTIONS AND METRICS 1. Multiple-User Access. 1.1 If On-Premise Software licensed on a per-user basis is installed on a Computer accessible by more than one User, then the total number of Users

More information

Energy Conservation & Productivity Enhancement Practices The Japan Perspective

Energy Conservation & Productivity Enhancement Practices The Japan Perspective Energy Conservation & Productivity Enhancement Practices The Japan Perspective 30 th September 2014 Masashi Takesako Azbil Corporation 2014 Azbil Corporation All rights reserved. INDEX 1. Self Introduction

More information

Integrating Legacy Assets Using J2EE Web Services

Integrating Legacy Assets Using J2EE Web Services Integrating Legacy Assets Using J2EE Web Services Jonathan Maron Oracle Corporation Page Agenda SOA-based Enterprise Integration J2EE Integration Scenarios J2CA and Web Services Service Enabling Legacy

More information

On-chip Flash Memory Programming Solution using Capacitive Touch Sensing Unit and USB Memory RX Driver Package Application

On-chip Flash Memory Programming Solution using Capacitive Touch Sensing Unit and USB Memory RX Driver Package Application On-chip Flash Memory Programming Solution using Capacitive Touch Sensing Unit and USB Memory RX Driver Package Application Introduction APPLICATION NOTE R01AN2561EJ0102 Rev.1.02 This document is an application

More information

QuickTransit for Solaris/SPARC-to-Linux/Itanium 動作検証報告書 株式会社ネットワールドシステム基盤技術部プラットフォームソリューショングループ丸山真一

QuickTransit for Solaris/SPARC-to-Linux/Itanium 動作検証報告書 株式会社ネットワールドシステム基盤技術部プラットフォームソリューショングループ丸山真一 QuickTransit for Solaris/SPARC-to-Linux/Itanium 動作検証報告書 株式会社ネットワールドシステム基盤技術部プラットフォームソリューショングループ丸山真一 2008 年 2 月 29 日に実施した PRIMEQUEST580 上での QuickTransit for Solaris/SPARC -to- Linux/Itanium の動作検証結果を報告いたします

More information

autocad 2000i update 647D5CDB9807FA8605EC016DF2CFDE43 Autocad 2000i Update 1 / 6

autocad 2000i update 647D5CDB9807FA8605EC016DF2CFDE43 Autocad 2000i Update 1 / 6 Autocad 2000i Update 1 / 6 2 / 6 3 / 6 Autocad 2000i Update AutoCAD is a CAD (Computer Aided Design or Computer Aided Drafting) software application for 2D and 3D design and drafting. First released in

More information

マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた

マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた マルチビットアップセット耐性及びシングルビットアップセット耐性を備えた 8T SRAM セルレイアウト 吉本秀輔神戸大学博士課程 1 年 E-mail : yoshipy@cs28.cs.kobe-u.ac.jp 1 Outline 背景 提案 8T SRAM cell layout ソフトエラーシミュレーション結果 消費電力比較結果 まとめ 2 Outline 背景 提案 8T SRAM cell

More information

Computer Programming I (Advanced)

Computer Programming I (Advanced) Computer Programming I (Advanced) 7 th week Kazumasa Yamamoto Dept. Comp. Sci. & Eng. Computer Programming I (Adv.) 7th week 1 Exercise of last week 1. Sorting by bubble sort Compare the bubble sort with

More information

SoftBank 101SI Upgrade tool for Windows PC Instruction Manual

SoftBank 101SI Upgrade tool for Windows PC Instruction Manual SoftBank 101SI Upgrade tool for Windows PC Instruction Manual 1 Introduction Thank you for purchasing SoftBank 101SI and using upgrade tool. This upgrade tool is for 101SI firmware. Operating Environment

More information

Thomas Schmidt haw-hamburg.de SOAP. Message Exchange SOAP Message Structure SOAP Encoding Programming Issues

Thomas Schmidt haw-hamburg.de SOAP. Message Exchange SOAP Message Structure SOAP Encoding Programming Issues SOAP Message Exchange SOAP Message Structure SOAP Encoding Programming Issues SOAP Message Exchange Model A SOAP message in principle is a one-way transmission of an envelope from sender to receiver, but

More information

JASCO-HPLC Operating Manual. (Analytical HPLC)

JASCO-HPLC Operating Manual. (Analytical HPLC) JASCO-HPLC Operating Manual (Analytical HPLC) Index A) Turning on Equipment and Starting ChromNav... 3 B) For Manual Measurement... 6 (1) Making Control Method... 7 (2) Preparation for Measurement... 9

More information

XML テストドライバ XML 要求バッチファイル APPENDIX この付録では XML テストドライバについて説明します

XML テストドライバ XML 要求バッチファイル APPENDIX この付録では XML テストドライバについて説明します APPENDIX B この付録では について説明します XML 要求バッチファイル 次のサンプル XML/CORBA インターフェイステストドライバは CLI スクリプトとして作成された XML 要求バッチファイルを実行します これにより システムのプロビジョニングに使用される古い CLI スクリプトとの互換性を維持できます package com.sswitch.oam.drv; import java.lang.*;

More information

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68

Synchronization with shared memory. AMANO, Hideharu Textbook pp.60-68 Synchronization with shared memory AMANO, Hideharu Textbook pp.60-68 Fork-join: Starting and finishing parallel processes fork Usually, these processes (threads) can share variables fork join Fork/Join

More information

Fast Track to EJB 3.0 and the JPA Using JBoss

Fast Track to EJB 3.0 and the JPA Using JBoss Fast Track to EJB 3.0 and the JPA Using JBoss The Enterprise JavaBeans 3.0 specification is a deep overhaul of the EJB specification that is intended to improve the EJB architecture by reducing its complexity

More information

CONTENTS... 1 INTRODUCTION... 3 OVERVIEW OF THE MAYA API INTERNATIONALIZATION ARCHITECTURE...

CONTENTS... 1 INTRODUCTION... 3 OVERVIEW OF THE MAYA API INTERNATIONALIZATION ARCHITECTURE... AUTODESK MAYA PLUG-IN INTERNATIONALIZATION WHITE PAPER This white paper describes the internationalization and localization features available to programmers developing plug-ins for Autodesk Maya software.

More information

この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです

この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです 目次 概要前提条件要件使用するコンポーネント設定ネットワーク図設定ブラ設定 Windows マシン構成および設定確認トラブルシューティング関連情報 概要 この資料は Windows マシン (PPPoE クライアントとして機能しますその ) と PPPoE サーバとして機能する Cisco ルータ間のイーサネット (PPPoE) 上のポイントツーポイント接続を設定するためにプロシージャを記述したものです

More information

BEAAquaLogic. Service Bus. JPD Transport User Guide

BEAAquaLogic. Service Bus. JPD Transport User Guide BEAAquaLogic Service Bus JPD Transport User Guide Version: 3.0 Revised: March 2008 Contents Using the JPD Transport WLI Business Process......................................................2 Key Features.............................................................2

More information

JPexam. 最新の IT 認定試験資料のプロバイダ IT 認証であなたのキャリアを進めます

JPexam.   最新の IT 認定試験資料のプロバイダ IT 認証であなたのキャリアを進めます JPexam 最新の IT 認定試験資料のプロバイダ http://www.jpexam.com IT 認証であなたのキャリアを進めます Exam : MB6-704 Title : Microsoft Dynamics AX 2012 R3 CU8 Development Introduction Vendor : Microsoft Version : DEMO Get Latest & Valid

More information

Operation Manual [Version 4.1]

Operation Manual [Version 4.1] Sub-1GHz to Internet P-900 IoT Gateway. Operation Manual [Version 4.1] Connect POCSAG to Internet by WIFI and receive by smart phone. Table of Contents 1. Introduction... 2 2.. Apparent of P-900 IoT station...

More information

Manufacturing that s good for people and good for the environment

Manufacturing that s good for people and good for the environment Manufacturing that s good for people and good for the environment ハアーモニーがめざすもの それは人に自然にやさしいモノづくり We re committed to manufacturing that s good for people and good for the environment. 経営理念 経営指針 Co rp o

More information

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科

URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 URL IO オブジェクト指向プログラミング特論 2018 年度只木進一 : 工学系研究科 2 ネットワークへのアクセス ネットワークへの接続 TCP:Socket 利用 UDP:DatagramSocket 利用 URL へのアクセス 3 application String Object reader / writer char stream byte device 4 階層化された IO の利点

More information

V3 EJB Test One Pager

V3 EJB Test One Pager V3 EJB Test One Pager Overview 1. Introduction 2. EJB Testing Scenarios 2.1 EJB Lite Features 2.2 API only in Full EJB3.1 3. Document Review 4. Reference documents 1. Introduction This document describes

More information

Verify99. Axis Systems

Verify99. Axis Systems Axis Systems Axis Systems Mission Axis Systems, Inc. is a technology leader in the logic design verification market. Founded in 1996, the company offers breakthrough technologies and high-speed simulation

More information

Hierarchical Parallelization of Coloring Procedures for ILU Preconditioner

Hierarchical Parallelization of Coloring Procedures for ILU Preconditioner Hierarchical Parallelization of Coloring Procedures for ILU Preconditioner Masatoshi Kawai Supercomputing Research Division, ITC, Research Associate SPPEXA Workshop @ Akihabara Apr/6/2017 1 Index nbackgrounds

More information

Invitrogen Custom Primer Ordering Guide

Invitrogen Custom Primer Ordering Guide Invitrogen Custom Primer Ordering Guide Rev. August,2015 Invitrogen Custom Primer Ordering Guide This guide describes how to order custom primer in Lifetechnologies Japan website. Before ordering primers,

More information

WD/CD/DIS/FDIS stage

WD/CD/DIS/FDIS stage ISO #### All rights reserved ISO TC ###/SC ##/WG # Secretariat: XXXX テンプレート中 解説に相当する部分の和訳を黄色ボックスにて示します 一般財団法人日本規格協会 Title (Introductory element Main element Part #: Part title) WD/CD/DIS/FDIS stage Warning

More information

一覧にない機種は動作確認が未実施のものであり 正常動作しないという意味ではありません ACER 型番 ( 機種名 ) APPLE ASUS BRULE DELL. Windows Vista Home Premium

一覧にない機種は動作確認が未実施のものであり 正常動作しないという意味ではありません ACER 型番 ( 機種名 ) APPLE ASUS BRULE DELL. Windows Vista Home Premium D11LC 動作確認済み PC 一覧 2009 年 06 月 01 日現在 一覧にない機種は動作確認が未実施のものであり 正常動作しないという意味ではありません 動作確認はパソコンメーカー出荷状態のパソコンで行っております 周辺機器を増設したり 設定変更を行っている場合には新たな設定が必要か 正常動作しない場合があります 動作確認済みの機種について正常動作を確認しておりますが お客さまの環境において正常動作を保証するものではありません

More information

Macbook pro 17 inch mid gb ram

Macbook pro 17 inch mid gb ram Macbook pro 17 inch mid 2010 16gb ram Without a doubt, compatibility is the most important factor in buying a memory upgrade for your laptop or computer. Your RAM must be compatible with your system or

More information

IP Network Technology

IP Network Technology IP Network Technology IP Internet Procol QoS Quality of Service RPR Resilient Packet Ring FLASHWAVE2700 Abstract The Internet procol (IP) has made it possible to drastically broaden the bandwidth of networks

More information

JPShiKen.COM 全日本最新の IT 認定試験問題集. 1 年で無料進級することに提供する

JPShiKen.COM 全日本最新の IT 認定試験問題集.   1 年で無料進級することに提供する JPShiKen.COM 全日本最新の IT 認定試験問題集 最新の IT 認定試験資料のプロバイダ 参考書評判研究更新試験高品質学習質問と回答番号教科書難易度体験講座初心者種類教本ふりーく方法割引復習日記合格点学校教材スクール認定書籍攻略取得 PDF 合格率教育一発合格練習クラムメディア日本語問題集特典フリーク赤本虎の巻最新費用過去科目勉強法テストガイド模擬受験記資料対策関節入門会場実際独学科目

More information

Ritsu-Mate Registration Manual (for Undergraduate Programs)

Ritsu-Mate Registration Manual (for Undergraduate Programs) Ritsu-Mate Registration Manual (for Undergraduate Programs) - Ritsumeikan University has introduced Ritsu-Mate, an online application / enrollment system that can be used to complete a part of the undergraduate

More information

Topexam. 一番権威的な IT 認定試験ウェブサイト 最も新たな国際 IT 認定試験問題集

Topexam.  一番権威的な IT 認定試験ウェブサイト 最も新たな国際 IT 認定試験問題集 Topexam 一番権威的な IT 認定試験ウェブサイト http://www.topexam.jp 最も新たな国際 IT 認定試験問題集 Exam : 1D0-442 Title : CIW EnterprISE SPECIALIST Vendors : CIW Version : DEMO Get Latest & Valid 1D0-442 Exam's Question and Answers

More information

Video Annotation and Retrieval Using Vague Shot Intervals

Video Annotation and Retrieval Using Vague Shot Intervals Master Thesis Video Annotation and Retrieval Using Vague Shot Intervals Supervisor Professor Katsumi Tanaka Department of Social Informatics Graduate School of Informatics Kyoto University Naoki FUKINO

More information

PGroonga 2. Make PostgreSQL rich full text search system backend!

PGroonga 2. Make PostgreSQL rich full text search system backend! PGroonga 2 Make PostgreSQL rich full text search system backend! Kouhei Sutou ClearCode Inc. PGConf.ASIA 2017 2017-12-05 Targets 対象者 Want to implement full text search with PostgreSQL PostgreSQL で全文検索したい

More information

2-H Windows on AWS. Amazon Web Services. 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.

2-H Windows on AWS. Amazon Web Services. 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. 2-H1-2-16 Windows on AWS Amazon Web Services Fukuyo, Naoya Java DB BI BA SE Cloud & Enterprise AWS VPC Agenda 1. AWS Windows 2. Active Directory AWS SSO 3. SQL Server on EC2 AWS Windows Customer Adoption

More information

J2EE 1.4. Magnus Larsson. Callista Enterprise AB.

J2EE 1.4. Magnus Larsson. Callista Enterprise AB. J2EE 1.4 Magnus Larsson Callista Enterprise AB magnus.larsson@callista.se http://www.callista.se/enterprise CADEC 2003-01-29, J2EE 1.4, Slide 1 J2EE 1.4 Target audience J2EE developers and architects Objectives

More information

Infragistics ASP.NET リリースノート

Infragistics ASP.NET リリースノート 2015.1 リリースノート AJAX は パフォーマンスに注力して設計されたグリッド 快適な UX に不可欠なツリー タブ メニューなど ASP. NET AJAX に準拠した高パフォーマンスな Web Forms アプリケーションを作成するツールセットです インストール ダウンロード 2015.1 サービスリリースダウンロード リリースノート コンポーネント カテゴリ 説明 ExcelEngine

More information

present on a local docker container to Kong. This special event is open only to Cisco Customers and Partners. This project contains sample code to be

present on a local docker container to Kong. This special event is open only to Cisco Customers and Partners. This project contains sample code to be Uccx rest api Anthony Holloway Please use the star ratings to help drive great content to the top of searches. First, Why are you using the Create File Document and Cache Document steps? If you simply

More information

Software Prototyping ( プロトタイピング ) Animating and demonstrating system requirements

Software Prototyping ( プロトタイピング ) Animating and demonstrating system requirements Software Prototyping ( プロトタイピング ) Animating and demonstrating requirements Ian Sommerville 1995 Software Engineering, 5th edition. Chapter 8 Slide 1 Uses of s The principal use is to help customers and

More information

さまざまなニーズにお応えできるラインナップ!

さまざまなニーズにお応えできるラインナップ! さまざまなニーズにお応えできるラインナップ! The Line-up that meets your various needs! 永い歴史を有する エレクトロニクス通信の沖電気 の豊富な経験と技術をベースに 一貫して船内通信分野に 多種多用途の電話機 自動 共電 バッテリーレス式及び各種の防爆型 を供給し続けております Based on a wide spectrum of experience

More information

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved.

Zabbix ログ解析方法. 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ. Copyright Cybertrust Japan Co., Ltd. All rights reserved. Zabbix ログ解析方法 2018/2/14 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ Zabbix ログ解析方法 サイバートラスト株式会社 Linux/OSS 事業部技術統括部花島タケシ 2 自己紹介 MIRACLE ZBXサポート担当 Zabbixソースコード調査 ドキュメント作成 ( 当社ブログも執筆 ) ときどき新規機能追加もしたりします 4.0 へ向けての機能紹介等

More information

GEMSIS, An introduction of Intelligent Information Support System for Emergency and Disaster Medicine

GEMSIS, An introduction of Intelligent Information Support System for Emergency and Disaster Medicine GEMSIS, An introduction of Intelligent Information Support System for Emergency and Disaster Medicine Kunihiko Takamatsu 1, Shinji Ogura1, MD PhD, Satoshi Tamura 2, PhD, Satoru Hayamizu 2, PhD 1 Gifu University

More information

HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド

HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド HPE Insight Control サーバープロビジョニング 7.6 ビルドプランリファレンスガイド HPE 部品番号 : 5200-2448 発行 : 2016 年 11 月第 1 版 1 Copyright 2012, 2016 Hewlett Packard Enterprise Development LP 本書の内容は 将来予告なしに変更されることがあります Hewlett Packard

More information

Denso Lexus GS250 TCU Teardown

Denso Lexus GS250 TCU Teardown Denso Lexus GS250 TCU Teardown FEATURES: Telematics Control Unit CDMA Cypress MB91F577BH, 32-bit, 80MHz Techno Solutions Manufacturer Denso Model Number 86741-53045 Carrier - Assembled in unknown Retail

More information

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form

振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 振込依頼書記入要領 Entry Guide for Direct Deposit Request Form 国立大学法人名古屋大学 National University Corporation Nagoya University この振込依頼書は 本学が貴社にお支払いする代金をご指定の金融機関口座に銀行振込するためのものです 新規に登録される場合 あるいは内容を一部変更される場合はその都度 この申出書を提出していただくよう

More information

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること

L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること L3 SSG/SSD を使用している PPPoA クライアントで PC を設定すること 目次 はじめにはじめに表記法前提条件使用するコンポーネント設定ネットワーク図設定 RADIUS プロファイル確認トラブルシューティングシングルサインオン SSD 2.5.1 機能とは何か SSG および SSD を設定する前に何を認知する必要がありますか PPPoA セッションが始められたが 後 SSD ログオンが設定される前にことをしますか

More information

BraindumpQuiz. Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more!

BraindumpQuiz.   Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more! BraindumpQuiz http://www.braindumpquiz.com/ Best exam materials provider - BraindumpQuiz! Choosing us, Benefit more! Exam : 1Z1-804 日本語 (JPN) Title : Java SE 7 Programmer II Exam Vendor : Oracle Version

More information

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A10)

アルゴリズムの設計と解析 (W4022) 教授 : 黄潤和 広野史明 (A4/A10) アルゴリズムの設計と解析 教授 : 黄潤和 SA: (W4022) rhuang@hosei.ac.jp 広野史明 (A4/A10) fumiaki.hirono.5k@stu.hosei.ac.jp Goal 到達目標 : The objectives of this course are to make students firmly laying good foundation of data

More information