JP2005196767A - ウェブ・サービス呼び出しをサポートするスケジューラ - Google Patents
ウェブ・サービス呼び出しをサポートするスケジューラ Download PDFInfo
- Publication number
- JP2005196767A JP2005196767A JP2004369823A JP2004369823A JP2005196767A JP 2005196767 A JP2005196767 A JP 2005196767A JP 2004369823 A JP2004369823 A JP 2004369823A JP 2004369823 A JP2004369823 A JP 2004369823A JP 2005196767 A JP2005196767 A JP 2005196767A
- Authority
- JP
- Japan
- Prior art keywords
- external service
- message
- execution
- work
- request message
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/50—Allocation of resources, e.g. of the central processing unit [CPU]
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/46—Multiprogramming arrangements
- G06F9/54—Interprogram communication
- G06F9/547—Remote procedure calls [RPC]; Web services
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Stored Programmes (AREA)
- Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
- Information Transfer Between Computers (AREA)
Abstract
【解決手段】 スケジューラ205は、実行エージェント210および記述子240をそれぞれの実行依頼されることになるジョブと関連付けるワークロード・データベース220へアクセスする。記述子は、所望のウェブ・サービス255および対応するWSDLドキュメント245のアドレスを識別する。ジョブの実行が依頼されるときには、スケジューラがその記述子を関連付けられたエージェントへ送る。エージェントは、対応するウェブ・サービスのWSDLドキュメントをダウンロードする。続いてそのウェブ・サービスのための要求メッセージ250が構築され、所望の内容がWSDLドキュメント内に指定された構造の中に埋め込まれる。この要求メッセージを、そのウェブ・サービスを実装しているエンドポイントへ送り、そのウェブ・サービスが呼び出される。
【選択図】図3
Description
・・・・
<\definitions>
<schema targetNamespace=mySchema>
・・・・
</schema>
</types>
<complexType>
<all>
・・・・
</all>
</complexType>
</element>
<part name=myPart element=myElement type=myType/>
</message>
<operation name=myOperation>
<.... name=myMessage message=myDefinition/>
</operation>
・・・・
</portType>
<input name=myInput message=myInputDefinition/>
</operation>
<input name=myInput message=myInputDefinition/>
<output name=myOutput message=myOutputDefinition/>
<fault name=myFault message=myFaultDefinition/>
</operation>
<output name=myOutput message=myOutputDefinition/>
<input name=myInput message=myInputDefinition/>
<fault name=myFault message=myFaultDefinition/>
</operation>
<output name=myOutput message=myOutputDefinition/>
</operation>
・・・・
<operation name=myOperation>
・・・・
<input name=myInput>
・・・・
</input>
<output name=myOutput>
・・・・
</output>
<fault name=myFault>
・・・・
</fault>
</operation>
</binding>
<port name=myPort binding=myBinding>
・・・・
</port>
・・・・
</service>
xmls:env=myNamespace env:encodingStyle=myEncodingStyle>
<env:Header>
・・・・
</env:Header>
<env:Body>
・・・・
</env:Body>
</env:Envelope>
encodingStyle=myEncodingStyle namespace=myNamespace/>
encodingStyle=myEncodingStyle namespace=myNamespace/>
WSDLDocument=myWSDL
userid=myUserid
password=myPassword
serviceNameSpace=myNameSpace
serviceName=myService
portName=myPort
operationName=myOperation
messageContent=
<myParameter>myValue</myParameter>
・・・・
<types>
<schema targetNamespace=rateSchema
<element name=“rateInput”>
<complexType>
<all>
<element name=“currency”
type=“string”/>
</all>
</complexType>
</element>
<element name=“rateOutput”>
<complexType>
<all>
<element name=“rate”
type=“float”/>
</all>
</complexType>
</element>
</schema>
</types>
<message name=“getRateInput”>
<part name=“body”
element=“rateInput”/>
</message>
<message name=“getRateOutput”>
<part name=“body”
element=“rateOutput”/>
</message>
<portType name=“ratePortType”>
<operation name=“getRate”>
<input message=“getRateInput”/>
<output message=“getRateOutput”/>
</operation>
</portType>
<binding name=“rateBinding” type=“ratePortType”>
<soap:binding style=“document” transport=“httt://schemas.xmlsoap.org.soap/http”/>
<operation name=“getRate”>
<soap:operation soapAction=myAction/>
<input>
<soap:body use=“literal”/>
</input>
<output>
<soap:body use=“literal”/>
</output>
</operation>
</binding>
<service name=“rateService”>
<documentation>
Return the exchange rate of a desired currency
</documentation>
<port name=“ratePort” binding=”rateBinding”>
<soap:address location=“rateLocation”/>
</port>
</service>
</definitions>
WSDLDocument=rateWSDL
userid=rateUserid
password=ratePassword
serviceNamespace=rateNamespace
serviceName=rateService
portName=ratePort
operationName=getRate
messageContent=<rateInput>$VAR</rateInput>
Host: rateLocation
Content‐Type: text/xml; charset=“utf‐8”
Content‐Length: ...
SoapAction: myAction
<CRLF>
<env:Envelope
xmls:env=“http://schemas.xmlsoap.org/soap/envelope/”>
<env:Body>
<m:getRateInput xmlns:m=rateNamespace>
<m:currency>USD</m:currency>
</m:getRateInput>
</env:Body>
</env:Envelope>
<CRLF>
Content‐Length: ...
<CRLF>
<env:Envelope
xmls:env=“http://schemas.xmlsoap.org/soap/envelope/”>
<env:Body>
<m:getRateOutput xmlns:m=rateNamespace>
<m:rate>1.1875</m:rate>
</m:getRateOutput>
</env:Body>
</env:Envelope>
<CRLF>
Claims (11)
- 分散アーキテクチャを有するデータ処理インフラストラクチャ内における作業単位の実行を中央スケジューリング・アプリケーションの制御の下にスケジューリングする方法であって、
前記作業単位の少なくとも1つと、事前定義インターフェース・ドキュメントに従ってアクセス可能な外部サービスの表示を含む記述子を関連付けるステップ(304)、
事前定義プランに従った前記作業単位の実行を依頼するステップ(308)、
実行依頼された作業単位に関連付けられたそれぞれの外部サービスのインターフェース・ドキュメントを検索するステップ(336)、
前記実行依頼された作業単位に関連付けられたそれぞれの外部サービスのための要求メッセージを、対応するインターフェース・ドキュメントに従って構築するステップ(338〜342)、および、
前記外部サービスの呼び出しを生じさせるために各要求メッセージを対応する外部サービスへ送るステップ(364)、
を含む方法(300)。 - さらに、
呼び出された各外部サービスから応答メッセージを受け取るステップ(370)、および、
各応答メッセージを、対応するインターフェース・ドキュメントに従って解釈するステップ(375)、
を含む請求項1に記載の方法(300)。 - 前記インターフェース・ドキュメントは、各メッセージの構造を指定し、前記記述子は、さらに前記要求メッセージの内容の表示を含み、前記要求メッセージを構築するステップ(338〜342)は、
前記要求メッセージの内容を対応する構造内に埋め込むステップ(341〜342)、
を含む請求項1または2に記載の方法(300)。 - 前記要求メッセージの内容の表示は、前記外部サービスへ渡されるべき一組の入力パラメータを含み、その少なくとも1つの入力パラメータは記号変数であり、前記要求メッセージを構築するステップ(338〜342)は、さらに、
各記号変数を実際の値に変換するステップ(338)、
を含む請求項3に記載の方法(300)。 - 前記中央スケジューリング・アプリケーションは、スケジューラ、および少なくとも1つのエージェントを含み、前記スケジューラは前記関連付けるステップ(304)および実行を依頼するステップ(308)を実行し、各記述子は、さらに、対応する作業単位に関連付けられたエージェントの表示を含み、前記方法がさらに、
前記スケジューラが、それぞれの実行依頼された作業単位の実行の要求であって、対応する記述子の表示を含む実行の要求を関連付けられたエージェントへ送るステップ(316)、および
前記エージェントが、対応する外部サービスのインターフェース・ドキュメントを検索し(336)、前記外部サービスのための要求メッセージを構築し(338〜342)、かつ前記実行の要求に応答して前記要求メッセージを前記外部サービスへ送る(364)ステップ、
を含む、請求項1〜4のいずれかに記載の方法(300)。 - 前記インターフェース・ドキュメントの表示は、前記インフラストラクチャ内の、前記インターフェース・ドキュメントを格納している外部の場所のアドレスからなり、前記インターフェース・ドキュメントを検索するステップは、
対応する前記外部の場所から前記インターフェース・ドキュメントをダウンロードするステップ(336)を含む、請求項1〜5のいずれかに記載の方法(300)。 - 前記記述子は、外部サービスについての認証情報を含み、前記方法は、さらに、
前記外部サービスへ前記認証情報を送るステップ(352)を含み、前記認証情報に従って前記外部サービスの呼び出しが許可される、請求項1〜6のいずれかに記載の方法。 - 前記外部サービスがウェブ・サービスである、請求項1〜7のいずれかに記載の方法。
- データ処理システム(105、110)の作業メモリ内に直接ロード可能なコンピュータ・プログラムであって、請求項1〜8のいずれかに記載された方法をコンピュータに実行させるためのコンピュータ・プログラム(205、210)。
- 分散アーキテクチャを有するデータ処理インフラストラクチャ(100)内における作業単位の実行をスケジューリングするためのシステムであって、前記作業単位の少なくとも1つと、事前定義インターフェース・ドキュメントに従ってアクセス可能な外部サービスの表示を含む記述子を関連付けるための手段(220)、事前定義プランに従った前記作業単位の実行を依頼するための手段(205)、実行依頼された作業単位に関連付けられたそれぞれの外部サービスのインターフェース・ドキュメントを検索するための手段(210)、前記実行依頼された作業単位に関連付けられたそれぞれの外部サービスのための要求メッセージを、対応するインターフェース・ドキュメントに従って構築するための手段(210)、および、前記外部サービスの呼び出しを生じさせるために各要求メッセージを対応する外部サービスへ送るための手段(210)を有する中央スケジューリング・アプリケーション(205、210)を含むシステム(105、110)。
- 請求項10に従ったシステム(105、110)および、それぞれの外部サービスを実装するための少なくとも1つの外部サーバ(120)を含む、分散アーキテクチャを有するデータ処理インフラストラクチャ(100)。
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
EP03368129 | 2003-12-30 |
Publications (2)
Publication Number | Publication Date |
---|---|
JP2005196767A true JP2005196767A (ja) | 2005-07-21 |
JP3965185B2 JP3965185B2 (ja) | 2007-08-29 |
Family
ID=34707291
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP2004369823A Active JP3965185B2 (ja) | 2003-12-30 | 2004-12-21 | ウェブ・サービス呼び出しをサポートするスケジューラ |
Country Status (3)
Country | Link |
---|---|
US (2) | US7404189B2 (ja) |
JP (1) | JP3965185B2 (ja) |
CN (1) | CN100356329C (ja) |
Cited By (2)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2007122189A (ja) * | 2005-10-25 | 2007-05-17 | Canon Inc | スケジュール実行装置及びプログラム |
JP2009223439A (ja) * | 2008-03-13 | 2009-10-01 | Canon Inc | メッセージ生成処理方法及びメッセージ生成処理装置 |
Families Citing this family (46)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20100153183A1 (en) * | 1996-09-20 | 2010-06-17 | Strategyn, Inc. | Product design |
US7099037B2 (en) * | 2003-04-22 | 2006-08-29 | Lightning Source Inc. | N-up printing |
CN1620060B (zh) * | 2003-11-17 | 2010-04-28 | 国际商业机器公司 | 把浏览器不兼容的信息整合在网络内容中以及显示该信息的方法和设备 |
US8171474B2 (en) * | 2004-10-01 | 2012-05-01 | Serguei Mankovski | System and method for managing, scheduling, controlling and monitoring execution of jobs by a job scheduler utilizing a publish/subscription interface |
US9760647B2 (en) * | 2004-12-08 | 2017-09-12 | Oracle International Corporation | Techniques for automatically exposing, as web services, procedures and functions stored in a database |
US7983209B2 (en) * | 2005-04-18 | 2011-07-19 | Research In Motion Limited | System and method for producing notification based web services |
US8464317B2 (en) * | 2005-05-06 | 2013-06-11 | International Business Machines Corporation | Method and system for creating a protected object namespace from a WSDL resource description |
US7877350B2 (en) * | 2005-06-27 | 2011-01-25 | Ab Initio Technology Llc | Managing metadata for graph-based computations |
US8156500B2 (en) * | 2005-07-01 | 2012-04-10 | Microsoft Corporation | Real-time self tuning of planned actions in a distributed environment |
US7590935B2 (en) * | 2005-07-08 | 2009-09-15 | Microsoft Corporation | Dynamic generation of WSDL documents based on database metadata |
CN100383731C (zh) * | 2005-08-25 | 2008-04-23 | 复旦大学 | 一个Web Services的实时、动态合成方法 |
US7603474B2 (en) | 2005-10-05 | 2009-10-13 | Microsoft Corporation | Efficient endpoint matching using a header-to-bit conversion table |
CN100571167C (zh) * | 2006-02-24 | 2009-12-16 | 国际商业机器公司 | Web服务业务流程的单元测试的方法和设备 |
US7739698B2 (en) * | 2006-05-25 | 2010-06-15 | International Business Machines Corporation | Multiplatform API usage tool |
AU2007286155B2 (en) * | 2006-08-10 | 2013-12-12 | Ab Initio Technology Llc. | Distributing services in graph-based computations |
GB0623904D0 (en) * | 2006-11-30 | 2007-01-10 | Ibm | A method,apparatus and computer program for modifying an endpointreference representing a web service endpoint |
KR100880536B1 (ko) * | 2007-01-05 | 2009-01-28 | 아주대학교산학협력단 | 이기종 컴퓨팅 및 서비스 통합을 위한 오픈 프레임워크시스템 |
US7958188B2 (en) * | 2007-05-04 | 2011-06-07 | International Business Machines Corporation | Transaction-initiated batch processing |
US7797340B2 (en) * | 2007-06-15 | 2010-09-14 | Samsung Electronics Co., Ltd. | Method and system for searchable web services |
KR101635945B1 (ko) * | 2007-07-26 | 2016-07-04 | 아브 이니티오 테크놀로지 엘엘시 | 에러 핸들링이 가능한 그래프 기반의 트랜잭션 연산 처리 방법 및 시스템 |
US8214244B2 (en) | 2008-05-30 | 2012-07-03 | Strategyn, Inc. | Commercial investment analysis |
WO2009126591A1 (en) | 2008-04-07 | 2009-10-15 | Express Mobile, Inc. | Systems and methods for programming mobile devices |
US8949713B1 (en) | 2008-06-30 | 2015-02-03 | Amazon Technologies, Inc. | Version-specific request processing |
US8266477B2 (en) | 2009-01-09 | 2012-09-11 | Ca, Inc. | System and method for modifying execution of scripts for a job scheduler using deontic logic |
US8832173B2 (en) * | 2009-01-20 | 2014-09-09 | Sap Ag | System and method of multithreaded processing across multiple servers |
CN105843684B (zh) | 2009-02-13 | 2020-03-03 | 起元技术有限责任公司 | 管理任务执行 |
US8666977B2 (en) | 2009-05-18 | 2014-03-04 | Strategyn Holdings, Llc | Needs-based mapping and processing engine |
US8296774B2 (en) * | 2009-06-26 | 2012-10-23 | Microsoft Corporation | Service-based endpoint discovery for client-side load balancing |
US8667329B2 (en) * | 2009-09-25 | 2014-03-04 | Ab Initio Technology Llc | Processing transactions in graph-based applications |
CN101853156B (zh) * | 2010-05-12 | 2013-07-17 | 上海普元信息技术股份有限公司 | 构件化软件系统中实现Web Service调用的方法 |
CN107066241B (zh) | 2010-06-15 | 2021-03-09 | 起元技术有限责任公司 | 用于动态加载基于图的计算的系统和方法 |
US20130103767A1 (en) * | 2011-10-21 | 2013-04-25 | Microsoft Corporation | Return notifications of tasks performed with entities |
US8949429B1 (en) * | 2011-12-23 | 2015-02-03 | Amazon Technologies, Inc. | Client-managed hierarchical resource allocation |
US10108521B2 (en) | 2012-11-16 | 2018-10-23 | Ab Initio Technology Llc | Dynamic component performance monitoring |
US9507682B2 (en) | 2012-11-16 | 2016-11-29 | Ab Initio Technology Llc | Dynamic graph performance monitoring |
US9274926B2 (en) | 2013-01-03 | 2016-03-01 | Ab Initio Technology Llc | Configurable testing of computer programs |
US20150074678A1 (en) * | 2013-09-09 | 2015-03-12 | Avraham Vachnis | Device and method for automating a process of defining a cloud computing resource |
US10180821B2 (en) | 2013-12-05 | 2019-01-15 | Ab Initio Technology Llc | Managing interfaces for sub-graphs |
TW201539218A (zh) * | 2014-02-17 | 2015-10-16 | Microsoft Technology Licensing Llc | 與外部內容項目之間的編碼的關聯性 |
US9948698B2 (en) | 2015-06-04 | 2018-04-17 | International Business Machines Corporation | Web services documentation |
US10657134B2 (en) | 2015-08-05 | 2020-05-19 | Ab Initio Technology Llc | Selecting queries for execution on a stream of real-time data |
US10671669B2 (en) | 2015-12-21 | 2020-06-02 | Ab Initio Technology Llc | Sub-graph interface generation |
US11971860B2 (en) | 2015-12-28 | 2024-04-30 | Dropbox, Inc. | Embedded folder views |
US11741300B2 (en) | 2017-11-03 | 2023-08-29 | Dropbox, Inc. | Embedded spreadsheet data implementation and synchronization |
CN109522139B (zh) * | 2018-11-23 | 2021-04-27 | 杭州数梦工场科技有限公司 | 一种数据表服务生成调用方法、装置、设备及存储介质 |
US10514949B1 (en) * | 2018-12-11 | 2019-12-24 | Signals Analytics Ltd. | Efficient data processing in a serverless environment |
Family Cites Families (29)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
FR2692058B1 (fr) * | 1992-06-09 | 1994-07-29 | Bull Sa | Systeme de traitement transactionnel entre un serveur informatique et une pluralite de stations de travail. |
GB2302966A (en) * | 1995-06-30 | 1997-02-05 | Ibm | Transaction processing with a reduced-kernel operating system |
WO1997049039A1 (en) * | 1996-06-21 | 1997-12-24 | Bell Communications Research, Inc. | Apparatus and methods for highly available directory services in the distributed computing environment |
US5790789A (en) * | 1996-08-02 | 1998-08-04 | Suarez; Larry | Method and architecture for the creation, control and deployment of services within a distributed computer environment |
US6247056B1 (en) | 1997-02-03 | 2001-06-12 | Oracle Corporation | Method and apparatus for handling client request with a distributed web application server |
AU735024B2 (en) * | 1997-07-25 | 2001-06-28 | British Telecommunications Public Limited Company | Scheduler for a software system |
US6256771B1 (en) * | 1997-10-16 | 2001-07-03 | At&T Corp. | Method and apparatus for providing a dynamic service composition software architecture |
WO1999044123A1 (en) * | 1998-02-26 | 1999-09-02 | Sun Microsystems, Inc. | Downloadable smart proxies for performing processing associated with a remote procedure call in a distributed system |
US6237005B1 (en) * | 1998-06-29 | 2001-05-22 | Compaq Computer Corporation | Web server mechanism for processing multiple transactions in an interpreted language execution environment |
US6282697B1 (en) * | 1998-09-18 | 2001-08-28 | Wylci Fables | Computer processing and programming method using autonomous data handlers |
US7386586B1 (en) * | 1998-12-22 | 2008-06-10 | Computer Associates Think, Inc. | System for scheduling and monitoring computer processes |
GB2346990B (en) * | 1999-02-20 | 2003-07-09 | Ibm | Client/server transaction data processing system with automatic distributed coordinator set up into a linear chain for use of linear commit optimization |
US6363065B1 (en) * | 1999-11-10 | 2002-03-26 | Quintum Technologies, Inc. | okApparatus for a voice over IP (voIP) telephony gateway and methods for use therein |
US6573910B1 (en) * | 1999-11-23 | 2003-06-03 | Xerox Corporation | Interactive distributed communication method and system for bidding on, scheduling, routing and executing a document processing job |
US20020161814A1 (en) * | 2000-10-04 | 2002-10-31 | Wical Kelly J. | Batch processing system running in parallel on automated and distributed replication systems |
US8812666B2 (en) * | 2001-01-29 | 2014-08-19 | Da Capital Fund Limited Liability Company | Remote proxy server agent |
US7099938B2 (en) * | 2001-03-23 | 2006-08-29 | Hewlett-Packard Development Company, L.P. | Method, computer system, and computer program product for monitoring services of an information technology environment |
US20050155042A1 (en) * | 2001-07-02 | 2005-07-14 | Michael Kolb | Component-based system for distributed applications |
US7124415B1 (en) * | 2001-07-11 | 2006-10-17 | Redback Networks Inc. | Use of transaction agents to perform distributed transactions |
EP1283466A1 (en) * | 2001-08-06 | 2003-02-12 | Hewlett-Packard Company (a Delaware corporation) | Management system for a cluster |
US20030204547A1 (en) * | 2002-04-29 | 2003-10-30 | Kevin Davis | Technique for scheduling computer processes |
US8219608B2 (en) * | 2002-06-20 | 2012-07-10 | Koninklijke Philips Electronics N.V. | Scalable architecture for web services |
US7549153B2 (en) * | 2002-07-22 | 2009-06-16 | Amberpoint, Inc. | Apparatus and method for content and context processing of web service traffic |
JP3874706B2 (ja) | 2002-07-29 | 2007-01-31 | 株式会社東芝 | アプリケーションプログラムプラン生成装置、アプリケーションプログラムプラン生成方法、プログラム及び記録媒体 |
US7440940B2 (en) * | 2002-12-02 | 2008-10-21 | Sap Ag | Web service agent |
US7383550B2 (en) * | 2002-12-23 | 2008-06-03 | International Business Machines Corporation | Topology aware grid services scheduler architecture |
GB0305959D0 (en) * | 2003-03-15 | 2003-04-23 | Ibm | Client web service access |
US7086063B1 (en) * | 2003-03-25 | 2006-08-01 | Electric Cloud, Inc. | System and method for file caching in a distributed program build environment |
JP3947136B2 (ja) | 2003-05-30 | 2007-07-18 | 株式会社東芝 | ウェブサービスシステム、フロー展開支援装置およびフロー展開支援プログラム |
-
2004
- 2004-06-30 US US10/880,860 patent/US7404189B2/en active Active
- 2004-10-10 CN CNB2004100849166A patent/CN100356329C/zh not_active Expired - Fee Related
- 2004-12-21 JP JP2004369823A patent/JP3965185B2/ja active Active
-
2008
- 2008-05-12 US US12/118,933 patent/US7707587B2/en not_active Expired - Fee Related
Cited By (3)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JP2007122189A (ja) * | 2005-10-25 | 2007-05-17 | Canon Inc | スケジュール実行装置及びプログラム |
US8171074B2 (en) | 2005-10-25 | 2012-05-01 | Canon Kabushiki Kaisha | Web service system, schedule execution apparatus and control method thereof |
JP2009223439A (ja) * | 2008-03-13 | 2009-10-01 | Canon Inc | メッセージ生成処理方法及びメッセージ生成処理装置 |
Also Published As
Publication number | Publication date |
---|---|
US20080307420A1 (en) | 2008-12-11 |
CN100356329C (zh) | 2007-12-19 |
US7404189B2 (en) | 2008-07-22 |
CN1637710A (zh) | 2005-07-13 |
JP3965185B2 (ja) | 2007-08-29 |
US20050149935A1 (en) | 2005-07-07 |
US7707587B2 (en) | 2010-04-27 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JP3965185B2 (ja) | ウェブ・サービス呼び出しをサポートするスケジューラ | |
US7949999B1 (en) | Providing support for multiple interface access to software services | |
EP1483671B1 (en) | Provisioning aggregated services in a distributed computing environment | |
US8751626B2 (en) | Model-based composite application platform | |
Krishnan et al. | GSFL: A workflow framework for grid services | |
US7546606B2 (en) | System and method using a connector architecture for application integration | |
US20120036252A1 (en) | Osgi-based heterogeneous service integrating system and method | |
US20060224702A1 (en) | Local workflows in a business process management system | |
US20060029054A1 (en) | System and method for modeling and dynamically deploying services into a distributed networking architecture | |
US8843938B2 (en) | Methods, systems, and computer program products for asynchronous resumption of a dataflow | |
US20090165021A1 (en) | Model-Based Composite Application Platform | |
US20060224428A1 (en) | Ad-hoc and priority-based business process execution | |
US7934218B2 (en) | Interprocess communication management using a socket layer | |
WO2003034183A2 (en) | System and method using a connector architecture for application integration | |
Curbera et al. | Toward a programming model for service-oriented computing | |
EP1569106B1 (en) | A scheduler supporting web service invocation | |
US20100299677A1 (en) | Article of manufacture for programmatically describing web service-driven applications | |
US8712786B2 (en) | Method and apparatus for controlling a multi-node process | |
Lytra et al. | A pattern language for service-based platform integration and adaptation | |
KR102637168B1 (ko) | 애플리케이션 서비스 제공 장치, 애플리케이션 서비스 제공 방법 및 애플리케이션 서비스 제공하는 프로그램이 저장된 컴퓨터가 판독 가능한 기록매체 | |
KR102659150B1 (ko) | 애플리케이션 서비스 제공 장치, 애플리케이션 서비스 제공 방법 및 애플리케이션 서비스를 제공하는 컴퓨터로 실행가능한 프로그램을 저장하는 저장매체 | |
Mylläri | Introducing REST Based API Management and Its Relationship to Existing SOAP Based Systems | |
Sebu et al. | The design of stateful web services based on web service resource framework implemented in globus toolkit 4 | |
Luo et al. | Service grid for business computing | |
Sonntag | Conceptual design and implementation of a bpel light workflow engine with support for message exchange patterns |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
A131 | Notification of reasons for refusal |
Free format text: JAPANESE INTERMEDIATE CODE: A131 Effective date: 20060801 |
|
RD12 | Notification of acceptance of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7432 Effective date: 20060818 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A821 Effective date: 20060818 |
|
A521 | Written amendment |
Free format text: JAPANESE INTERMEDIATE CODE: A523 Effective date: 20061030 |
|
TRDD | Decision of grant or rejection written | ||
A01 | Written decision to grant a patent or to grant a registration (utility model) |
Free format text: JAPANESE INTERMEDIATE CODE: A01 Effective date: 20070522 |
|
RD14 | Notification of resignation of power of sub attorney |
Free format text: JAPANESE INTERMEDIATE CODE: A7434 Effective date: 20070522 |
|
A61 | First payment of annual fees (during grant procedure) |
Free format text: JAPANESE INTERMEDIATE CODE: A61 Effective date: 20070525 |
|
R150 | Certificate of patent or registration of utility model |
Ref document number: 3965185 Country of ref document: JP Free format text: JAPANESE INTERMEDIATE CODE: R150 Free format text: JAPANESE INTERMEDIATE CODE: R150 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20110601 Year of fee payment: 4 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20120601 Year of fee payment: 5 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20120601 Year of fee payment: 5 |
|
FPAY | Renewal fee payment (event date is renewal date of database) |
Free format text: PAYMENT UNTIL: 20130601 Year of fee payment: 6 |