JP2005092547A - Method for reconstructing single information processing system into web service system - Google Patents

Method for reconstructing single information processing system into web service system Download PDF

Info

Publication number
JP2005092547A
JP2005092547A JP2003325441A JP2003325441A JP2005092547A JP 2005092547 A JP2005092547 A JP 2005092547A JP 2003325441 A JP2003325441 A JP 2003325441A JP 2003325441 A JP2003325441 A JP 2003325441A JP 2005092547 A JP2005092547 A JP 2005092547A
Authority
JP
Japan
Prior art keywords
web service
database
client
data structure
interface description
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.)
Pending
Application number
JP2003325441A
Other languages
Japanese (ja)
Inventor
Toshiya Moto
俊也 本
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Hitachi Software Engineering Co Ltd
Original Assignee
Hitachi Software Engineering Co Ltd
Priority date (The priority date 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 date listed.)
Filing date
Publication date
Application filed by Hitachi Software Engineering Co Ltd filed Critical Hitachi Software Engineering Co Ltd
Priority to JP2003325441A priority Critical patent/JP2005092547A/en
Publication of JP2005092547A publication Critical patent/JP2005092547A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Stored Programmes (AREA)

Abstract

<P>PROBLEM TO BE SOLVED: To easily reconstruct an existing single system into a Web service system by making it unnecessary to manually rewrite any code. <P>SOLUTION: This method comprises: a step to analyze the source code of a task application to perform access to a database, to extract the schema information of a database, and to generate the interface description information of a Web service from the schema information to register it in an interface description table; and a step to automatically generate a stub and a skeleton to absorb a difference between a data structure for communication between a task application and a database and a data structure for communication by a Web service client which mediates data communication between the task application and the database arranged at a server side and a Web service with an SOAP protocol, and to reconstruct a single information processing as the client of the Web service through the mediation of the stub and the skeleton. <P>COPYRIGHT: (C)2005,JPO&NCIPI

Description

本発明は、データベースアクセスを伴う単独の情報処理システムをWebサービスシステムへ再構築する方法に係り、特に、データベースをアクセスする業務アプリケーションのソースコードからデータベースのスキーマ情報を抽出し、該スキーマ情報からWebサービスのインタフェース記述情報を自動生成し、データベースアクセス部を自動的にWebサービス化する方法に関するものである。   The present invention relates to a method for reconstructing a single information processing system with database access into a web service system, and in particular, database schema information is extracted from the source code of a business application accessing the database, and the web information is extracted from the schema information. The present invention relates to a method for automatically generating service interface description information and automatically converting a database access unit into a Web service.

インターネットの普及により、単独の情報処理システムのWeb化が広まりつつある。しかし、データベースアクセスを伴う既存の情報処理システムの多くは、単独で動作する。単独で動作するシステムをWebサービス化するためには、大きく分けて2つの方法がある。
1番目の方法は、ユーザインタフェースをクライアントへ配置し、業務ロジック(業務アプリケーション)とデータベースをサーバへ配置し、クライアントとサーバ間をHTTPプロトコルで接続する方法である。
2番目の方法は、ユーザインタフェースと業務ロジックをクライアントへ配置し、データベースをサーバへ配置し、クライアントとサーバ間をSOAPプロトコルで接続する方法である。
SOAPプロトコル(Simple Object Access Protocol)は、Webサービスで使用するXML形式のプロトコルであり、W3C NOTE「Simple Object Access Protocol (SOAP) 1.1」(http://www.w3.org/TR/SOAP/)で規定されており、公開されている。SOAPプロトコルの実装は、Apache ProjectのApache Axis(http://ws.apache.org/axis/)などが公知である。
With the spread of the Internet, the use of independent information processing systems on the Web is spreading. However, many existing information processing systems that involve database access operate independently. There are two main methods for converting a system that operates independently into a Web service.
The first method is a method in which the user interface is arranged in the client, the business logic (business application) and the database are arranged in the server, and the client and the server are connected by the HTTP protocol.
The second method is a method in which the user interface and business logic are arranged in the client, the database is arranged in the server, and the client and the server are connected by the SOAP protocol.
The SOAP protocol (Simple Object Access Protocol) is an XML format protocol used in Web services. W3C NOTE "Simple Object Access Protocol (SOAP) 1.1" (http://www.w3.org/TR/SOAP/) Stipulated in and published. As the implementation of the SOAP protocol, Apache Axis (http://ws.apache.org/axis/) of Apache Project is well known.

図3は、データベースアクセスを伴う単独の情報処理システム(以下、単独システムと略記)を示す図である。単独システム301は、ユーザインタフェース302、ユーザインタフェース302を操作したときに実行する業務ロジック303、データベース305で構成されている。業務ロジック303には、データベース305へアクセスするためのコードであるデータベースアクセス部304を含む。単独システム301は、1台のコンピュータ上で動作する。   FIG. 3 is a diagram showing a single information processing system with database access (hereinafter abbreviated as a single system). The single system 301 includes a user interface 302, business logic 303 that is executed when the user interface 302 is operated, and a database 305. The business logic 303 includes a database access unit 304 that is a code for accessing the database 305. The single system 301 operates on one computer.

図4は、図3のユーザインタフェース302と業務ロジック303をクライアント401へ配置し、データベース305をサーバ402へ配置し、クライアント401とサーバ402間をSOAPプロトコルで接続する方法によりWebサービス化したシステムを示す図である。Webサービス化したシステムは、ネットワーク403を介して、クライアント401とサーバ402で構成する。クライアント401の業務ロジック303中には、データベースアクセスを行うコードの代わりに、SOAPプロトコルでWebサービスを利用するためのWebサービスクライアント404を配置する。サーバ402には、データベース305へのアクセスをSOAPプロトコルで提供するためのWebサービス405を配置する。
図3のシステムをWebサービス化して、図4のシステムのようにするためには、データベースアクセス部304とWebサービス405とWebサービスクライアント404の間で通信するデータ構造とが整合するように、データベースアクセス部304のコードを手作業で書き換える必要があった。すなわち、SOAPプロトコルのデータ構造がデータベース305をアクセス可能なデータ構造になるようにデータベースアクセス部304のコードを手作業で書き換える必要があった。
本発明に関連する公知技術としては下記文献が挙げられる。
特開平6−67867号公報
FIG. 4 shows a system in which the user interface 302 and the business logic 303 of FIG. 3 are arranged in the client 401, the database 305 is arranged in the server 402, and a Web service is formed by connecting the client 401 and the server 402 with the SOAP protocol. FIG. A Web service system includes a client 401 and a server 402 via a network 403. In the business logic 303 of the client 401, a Web service client 404 for using a Web service with the SOAP protocol is arranged instead of a code for performing database access. The server 402 is provided with a Web service 405 for providing access to the database 305 using the SOAP protocol.
In order to convert the system of FIG. 3 into a Web service and make it like the system of FIG. 4, the database access unit 304, the Web service 405, and the data structure communicated among the Web service client 404 are matched. It was necessary to manually rewrite the code of the access unit 304. That is, it is necessary to manually rewrite the code of the database access unit 304 so that the data structure of the SOAP protocol becomes a data structure that can access the database 305.
The following documents are listed as known techniques related to the present invention.
JP-A-6-67867

しかし、データベースアクセス部304とWebサービス405とWebサービスクライアント404の間で通信するデータ構造とが整合するように、データベースアクセス部304のコードを手作業で書き換える方法では、単独システムの規模が大きい場合には、コードの書き換えに要する工数が大きくなる問題がある。
また、既存の単独システムの設計ドキュメントに不備がある場合には、システム全体の再設計になり、Webサービス化に要する工数が大きくなる問題がある。
本発明の目的は、手作業によるコードの書き換えを不要にし、既存の単独システムを容易にWebサービスシステムとして再構築することができるWebサービスシステムへの再構築方法を提供することにある。
However, when the method of manually rewriting the code of the database access unit 304 so that the data structure communicated between the database access unit 304, the web service 405, and the web service client 404 is consistent, the scale of the single system is large. However, there is a problem that the number of man-hours required for code rewriting increases.
In addition, if there is a deficiency in the design document of an existing single system, the entire system will be redesigned, and there will be a problem that the man-hours required for Web service increase.
An object of the present invention is to provide a restructuring method for a web service system that eliminates the need for manual code rewriting and can easily reconstruct an existing single system as a web service system.

前記の目的を達成するため、本発明は、データベースアクセスを伴う単独の情報処理システムのWebサービスシステムへの再構築方法であって、
前記情報処理システムにおける前記データベースをアクセスする業務アプリケーションのソースコードを解析し、前記データベースのスキーマ情報を抽出し、該スキーマ情報からWebサービスのインタフェース記述情報を生成してインタフェース記述テーブルに登録する第1のステップと、前記業務アプリケーションとデータベースとの間で通信するデータ構造と、前記業務アプリケーションとサーバ側に配置したデータベースとのデータ通信を仲介するWebサービスクライアントとWebサービスとがSOAPプロトコルで通信する際のデータ構造との相違を吸収するスタブおよびスケルトンを自動生成し、該スタブおよびスケルトンの仲介により前記単独の情報処理システムをWebサービスのクライアントとして再構築する第2のステップとを備えることを特徴とする。
In order to achieve the above object, the present invention is a method for reconstructing a single information processing system with database access into a Web service system,
First analyzing the source code of a business application that accesses the database in the information processing system, extracting schema information of the database, generating interface description information of a Web service from the schema information, and registering it in an interface description table , A data structure for communication between the business application and the database, and a Web service client and a Web service that mediate data communication between the business application and the database arranged on the server side communicate with each other using the SOAP protocol. A second step of automatically generating a stub and a skeleton that absorbs the difference from the data structure of the first and reconstructing the single information processing system as a Web service client through the mediation of the stub and the skeleton. Characterized in that it comprises a flop.

本発明によれば、
(1)データベースアクセス部のコードを手作業で書き換える必要がなくなり、Webサービス化のコストを低減できる。
(2)データ構造の相違は、スタブとスケルトンで自動的に整合させるため、コードの書き換えミスを防止できる。
(3)ドキュメントに不備がある既存の単独システムを容易にWebサービス化することができる。
According to the present invention,
(1) There is no need to manually rewrite the code of the database access part, and the cost of Web service can be reduced.
(2) Since the difference in the data structure is automatically matched between the stub and the skeleton, it is possible to prevent a code rewriting error.
(3) Existing single systems with incomplete documents can be easily converted into Web services.

以下、本発明の一実施形態について図面により詳しく説明する。
図1は、本発明を適用して、図3のデータベースアクセスを伴う単独システムを、自動的にWebサービス化した実施の形態を示すシステム構成図である。
Web化したシステムは、クライアント101とサーバ102で構成し、相互にネットワーク103を経由してSOAPプロトコルで通信を行う。
図3で示した既存の単独システムのうち、ユーザインタフェース302、業務ロジック303、業務ロジック303中に含まれるデータベースアクセス部304は、クライアント101内に配置する。また、単独システムのうち、データベース305は、サーバ102内に配置する。
Hereinafter, an embodiment of the present invention will be described in detail with reference to the drawings.
FIG. 1 is a system configuration diagram showing an embodiment in which the present invention is applied and a single system with database access in FIG. 3 is automatically converted into a Web service.
The Web system is composed of a client 101 and a server 102, and communicates with each other using the SOAP protocol via the network 103.
In the existing single system shown in FIG. 3, the user interface 302, the business logic 303, and the database access unit 304 included in the business logic 303 are arranged in the client 101. In the single system, the database 305 is arranged in the server 102.

Webサービス化を自動化するために、クライアント101内に、クライアント側機構104を配置する。また、サーバ102内に、サーバ側機構105を配置する。
クライアント側機構104は、データベースアクセスラッパー1041、Webサービスクライアント1042、インタフェース記述生成機構1043、レコードセット定義表1044、スタブ生成機構1045、スタブ1047で構成する。
インタフェース記述生成機構1043は、業務ロジック303のソースコードを入力して解析し、レコードセット定義表1044に変換する。次に、インタフェース記述生成機構1043は、レコードセット定義表1044から、インタフェース記述1046を生成する。
In order to automate the Web service, the client side mechanism 104 is arranged in the client 101. Further, the server side mechanism 105 is arranged in the server 102.
The client side mechanism 104 includes a database access wrapper 1041, a Web service client 1042, an interface description generation mechanism 1043, a record set definition table 1044, a stub generation mechanism 1045, and a stub 1047.
The interface description generation mechanism 1043 inputs and analyzes the source code of the business logic 303 and converts it into the record set definition table 1044. Next, the interface description generation mechanism 1043 generates an interface description 1046 from the record set definition table 1044.

インタフェース記述1046は、公知のWSDL(Web Service Definition Language)で記述した文書である。スタブ生成機構1045は、インタフェース記述生成機構1043が生成したインタフェース記述1046を入力し、Webサービスクライアント1042がWebサービス1051へアクセスするためのスタブ1047を生成する。
スタブ1047は、Webサービスクライアント1042が、Webサービス1051とSOAPプロトコルで通信する際に、データベースアクセス部304が出力するデータ構造とSOAPプロトコルのデータ構造の違いを吸収する。詳しくは、データベースアクセス部304がデータベースアクセスラッパー1041を介して出力するデータ構造をSOAPプロトコルのデータ構造に整合させる。
データベースアクセスラッパー1041は、データベースアクセス部304が、データベース305にアクセスする場合と同じインタフェースをもつ。データベースアクセス部304が、データベース305へアクセスしようとすると、データベース305の代わりにデータベースアクセスラッパー1041へアクセスする。データベースアクセスラッパー1041は、Webサービスクライアント1042を呼び出し、スタブ1045を経由し、さらにネットワーク103を経由してSOAPプロトコルを使ってWebサービス1051へアクセスする。
The interface description 1046 is a document described in a publicly known WSDL (Web Service Definition Language). The stub generation mechanism 1045 receives the interface description 1046 generated by the interface description generation mechanism 1043 and generates a stub 1047 for the Web service client 1042 to access the Web service 1051.
The stub 1047 absorbs the difference between the data structure output by the database access unit 304 and the data structure of the SOAP protocol when the Web service client 1042 communicates with the Web service 1051 using the SOAP protocol. Specifically, the data structure output from the database access unit 304 via the database access wrapper 1041 is matched with the data structure of the SOAP protocol.
The database access wrapper 1041 has the same interface as when the database access unit 304 accesses the database 305. When the database access unit 304 attempts to access the database 305, it accesses the database access wrapper 1041 instead of the database 305. The database access wrapper 1041 calls the Web service client 1042, accesses the Web service 1051 via the stub 1045 and further via the network 103 using the SOAP protocol.

サーバ側機構105は、データベースアクセス部1052、Webサービス1051、スケルトン生成機構1053、スケルトン1054で構成する。
データベースアクセス部1052は、業務ロジック303のデータベースアクセス部304と同等の機能をもつ。Webサービス1051は、データベースアクセス部1052へのアクセスをWebサービスとして提供する。
スケルトン生成機構1053は、インタフェース記述生成機構1043が生成したインタフェース記述1046を入力し、スケルトン1054を生成する。スケルトン1054は、Webサービス1051とWebサービスクライアント1042がSOAPプロトコルで通信する際に、Webサービス1051がクライアント101から受信したSOAPプロトコルのデータ構造とデータベースアクセス部1052データ構造の違いを吸収する。詳しくは、Webサービス1051が出力するデータ構造をデータベースアクセス部1052の入力インタフェースに整合するようにデータ構造を変換する。
The server side mechanism 105 includes a database access unit 1052, a Web service 1051, a skeleton generation mechanism 1053, and a skeleton 1054.
The database access unit 1052 has the same function as the database access unit 304 of the business logic 303. The web service 1051 provides access to the database access unit 1052 as a web service.
The skeleton generation mechanism 1053 receives the interface description 1046 generated by the interface description generation mechanism 1043 and generates a skeleton 1054. The skeleton 1054 absorbs the difference between the data structure of the SOAP protocol and the database access unit 1052 received by the Web service 1051 from the client 101 when the Web service 1051 and the Web service client 1042 communicate using the SOAP protocol. Specifically, the data structure is converted so that the data structure output from the Web service 1051 matches the input interface of the database access unit 1052.

図2は、インタフェース記述生成機構1043が使用するレコードセット定義表1044のデータ構造の例を示す図である。レコードセット定義表1044は、n個のフィールド名FLDiとデータ型TYPEiの組で構成する。各フィールド名FLDiには、レコードセットのフィールド名を格納する。各データ型TYPEiには、フィールド名FLDiのデータ型を格納する。
レコードセット定義コード201は、データベース305中のレコードセットのデータ構造を記述したソースコードであり、Visual C++言語で記述したものである。インタフェース記述生成機構1043は、レコードセット定義コード201を入力し、レコードセットのフィールド名とデータ型を取り出し、レコードセット定義表1044に格納する。レコードセット定義表1044に格納する各データ型TYPEiは、レコードセット定義コード201の記述言語に依存しない一般的なデータ型で記述する。
次に、インタフェース記述生成機構1043は、レコードセット定義表1044を入力し、インタフェース記述1046を生成する。インタフェース記述1046は、XMLベースのWSDLで記述する。
次に、スタブ生成機構1045は、インタフェース記述1046を入力し、スタブ1047を生成する。スタブ1047は、Webサービスクライアント1042がWebサービス1051とSOAPプロトコルで通信する際に、インタフェース記述1046に依存する処理を受け持つ。
次に、スケルトン生成機構1053は、インタフェース記述1046を入力し、スケルトン1054を生成する。スケルトン1054は、Webサービス1051が、Webサービスクライアント1042とSOAPプロトコルで通信する際に、インタフェース記述1046に依存する処理を受け持つ。
FIG. 2 is a diagram showing an example of the data structure of the record set definition table 1044 used by the interface description generation mechanism 1043. The record set definition table 1044 is composed of a set of n field names FLDi and a data type TYPEi. Each field name FLDi stores the field name of the record set. Each data type TYPEi stores the data type of the field name FLDi.
The record set definition code 201 is a source code that describes the data structure of a record set in the database 305, and is written in the Visual C ++ language. The interface description generation mechanism 1043 inputs the record set definition code 201, extracts the field name and data type of the record set, and stores them in the record set definition table 1044. Each data type TYPEi stored in the record set definition table 1044 is described by a general data type independent of the description language of the record set definition code 201.
Next, the interface description generation mechanism 1043 inputs the record set definition table 1044 and generates an interface description 1046. The interface description 1046 is described in XML-based WSDL.
Next, the stub generation mechanism 1045 receives the interface description 1046 and generates a stub 1047. The stub 1047 is responsible for processing dependent on the interface description 1046 when the Web service client 1042 communicates with the Web service 1051 using the SOAP protocol.
Next, the skeleton generation mechanism 1053 receives the interface description 1046 and generates a skeleton 1054. The skeleton 1054 is responsible for processing depending on the interface description 1046 when the Web service 1051 communicates with the Web service client 1042 using the SOAP protocol.

以上の構成により、データベースアクセス部304は、データベースアクセスラッパー1041をデータベース305とみなしてアクセスを行う。データベースアクセスラッパー1041は、Webサービスクライアント1042を経由して、サーバ102のWebサービス1051とSOAPプロトコルで接続し、データベース305をアクセスする。この場合、Webサービスクライアント1042とWebサービス1051は、スタブ1047およびスケルトン1054の仲介により、データベースをアクセスするためのデータ構造とSOAPプロトコルのデータ構造を業務ロジック303のソースコードから抽出したインタフェース記述1046に従って自動的に整合させる。これにより、業務ロジック303とデータベース305との間で通信するデータ構造と、SOAPプロトコルで通信する際のデータ構造との相違が自動的に吸収されることになり、データベースアクセスを伴う既存の単独システムを自動的にWebサービス化することができる。   With the above configuration, the database access unit 304 performs access by regarding the database access wrapper 1041 as the database 305. The database access wrapper 1041 connects to the Web service 1051 of the server 102 via the Web service client 1042 using the SOAP protocol, and accesses the database 305. In this case, the Web service client 1042 and the Web service 1051 follow the interface description 1046 in which the data structure for accessing the database and the data structure of the SOAP protocol are extracted from the source code of the business logic 303 by the mediation of the stub 1047 and the skeleton 1054. Align automatically. As a result, the difference between the data structure for communication between the business logic 303 and the database 305 and the data structure for communication using the SOAP protocol is automatically absorbed, and the existing single system with database access is automatically absorbed. Can be automatically converted into a Web service.

既存の単独システムをWebサービス化した実施の形態を示すシステム構成図である。It is a system configuration diagram showing an embodiment in which an existing single system is converted into a Web service. レコードセット定義表のデータ構造図である。It is a data structure figure of a record set definition table. データベースアクセスを伴う既存の単独システムを示す図である。It is a figure which shows the existing single system with a database access. 図3のシステムをWebサービス化した場合のシステム構成図である。FIG. 4 is a system configuration diagram when the system of FIG. 3 is converted to a Web service.

符号の説明Explanation of symbols

101 クライアント
102 サーバ
103 ネットワーク
104 クライアント側機構
105 サーバ側機構
302 ユーザインタフェース
303 業務ロジック
304 データベースアクセス部
305 データベース
1042 Webサービスクライアント
1051 Webサービス
1052 データベースアクセス部
1043 インタフェース記述生成機構
1044 レコードセット定義表
1041 データベースアクセスラッパー
1046 インタフェース記述
1045 スタブ生成機構
1047 スタブ
1053 スケルトン生成機構
1054 スケルトン
DESCRIPTION OF SYMBOLS 101 Client 102 Server 103 Network 104 Client side mechanism 105 Server side mechanism 302 User interface 303 Business logic 304 Database access unit 305 Database 1042 Web service client 1051 Web service 1052 Database access unit 1043 Interface description generation mechanism 1044 Record set definition table 1041 Database access Wrapper 1046 Interface description 1045 Stub generation mechanism 1047 Stub 1053 Skeleton generation mechanism 1054 Skeleton

Claims (1)

データベースアクセスを伴う単独の情報処理システムのWebサービスシステムへの再構築方法であって、
前記情報処理システムにおける前記データベースをアクセスする業務アプリケーションのソースコードを解析し、前記データベースのスキーマ情報を抽出し、該スキーマ情報からWebサービスのインタフェース記述情報を生成してインタフェース記述テーブルに登録する第1のステップと、
前記業務アプリケーションとデータベースとの間で通信するデータ構造と、前記業務アプリケーションとサーバ側に配置したデータベースとのデータ通信を仲介するWebサービスクライアントとWebサービスとがSOAPプロトコルで通信する際のデータ構造との相違を吸収するスタブおよびスケルトンを自動生成し、該スタブおよびスケルトンの仲介により前記単独の情報処理システムをWebサービスのクライアントとして再構築する第2のステップと
を備えることを特徴とする単独の情報処理システムのWebサービスシステムへの再構築方法。
A method for reconstructing a single information processing system with database access into a Web service system,
First analyzing the source code of a business application that accesses the database in the information processing system, extracting schema information of the database, generating interface description information of a Web service from the schema information, and registering it in an interface description table And the steps
A data structure for communication between the business application and the database, and a data structure for communication between the web service client and the web service that mediate data communication between the business application and the database arranged on the server side using the SOAP protocol; And a second step of automatically generating a stub and a skeleton that absorb the difference between the two, and reconstructing the single information processing system as a Web service client through the mediation of the stub and the skeleton. A method for reconstructing a processing system into a Web service system.
JP2003325441A 2003-09-18 2003-09-18 Method for reconstructing single information processing system into web service system Pending JP2005092547A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2003325441A JP2005092547A (en) 2003-09-18 2003-09-18 Method for reconstructing single information processing system into web service system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2003325441A JP2005092547A (en) 2003-09-18 2003-09-18 Method for reconstructing single information processing system into web service system

Publications (1)

Publication Number Publication Date
JP2005092547A true JP2005092547A (en) 2005-04-07

Family

ID=34455878

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2003325441A Pending JP2005092547A (en) 2003-09-18 2003-09-18 Method for reconstructing single information processing system into web service system

Country Status (1)

Country Link
JP (1) JP2005092547A (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2007249785A (en) * 2006-03-17 2007-09-27 Fujitsu Ltd Compile program, production method for virtual database remote access program and remote access method for virtual database
JP2008040722A (en) * 2006-08-04 2008-02-21 Fuji Xerox Co Ltd Software module cooperative system and method
JP2008197974A (en) * 2007-02-14 2008-08-28 Hitachi Software Eng Co Ltd Db access loosely coupled system
CN100456722C (en) * 2005-07-19 2009-01-28 国际商业机器公司 Method, apparatus, and program product for providing web service
JP2012018675A (en) * 2010-07-07 2012-01-26 Fujitsu Ltd System and method for generating database model for application analysis

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN100456722C (en) * 2005-07-19 2009-01-28 国际商业机器公司 Method, apparatus, and program product for providing web service
JP2007249785A (en) * 2006-03-17 2007-09-27 Fujitsu Ltd Compile program, production method for virtual database remote access program and remote access method for virtual database
JP2008040722A (en) * 2006-08-04 2008-02-21 Fuji Xerox Co Ltd Software module cooperative system and method
JP2008197974A (en) * 2007-02-14 2008-08-28 Hitachi Software Eng Co Ltd Db access loosely coupled system
JP2012018675A (en) * 2010-07-07 2012-01-26 Fujitsu Ltd System and method for generating database model for application analysis

Similar Documents

Publication Publication Date Title
US7496497B2 (en) Method and system for selecting web site home page by extracting site language cookie stored in an access device to identify directional information item
US7702814B2 (en) System and method for downloading hypertext markup language formatted web pages
US7584499B2 (en) Policy algebra and compatibility model
US8682915B2 (en) Real-time single entry multiple carrier interface (SEMCI)
US8122346B2 (en) Methods and systems for merging software-level objects with document-level objects in a document publishing environment
US20040111533A1 (en) Transformations as web services
US20040225749A1 (en) Transformation of web site summary via taglibs
US20090007253A1 (en) Filtering technique for processing security measures in web service messages
JP2010009520A (en) Flow processor and message conversion method
CN103329129A (en) Multi-tenant audit awareness in support of cloud environments
TW200424899A (en) System and method for dynamically integrating remote portal fragments into a local portal
JP2011086291A (en) System landscape-compatible inter-application communication infrastructure
CN101149746A (en) Method for finding at least one web service among a plurality of web services
CN101206648A (en) Network service generating system and method
JP2001325255A (en) Multilingual translation system and multilingual translation service method
CN107632875A (en) Electric business Interface integration method, system, computer equipment, readable storage medium storing program for executing
US20090037829A1 (en) Framework to integrate web services with on-premise software
KR100759186B1 (en) System and method to provide web service that delivers information from semi structured web document and database
CN101702170A (en) Resolution and exchange method of administrative examination and approval serial port data
JP2005092547A (en) Method for reconstructing single information processing system into web service system
CN102227727A (en) Method and device for distributed configuration of remote data processing services in motor vehicle systems
Misbah et al. Towards a standard WSDL implementation of Multiview web services
US8156148B2 (en) Scalable algorithm for sharing EDI schemas
CN113626644A (en) Method and device for converting formats of business process data
CN102789471A (en) Mashup server and method for providing mashup service

Legal Events

Date Code Title Description
A621 Written request for application examination

Free format text: JAPANESE INTERMEDIATE CODE: A621

Effective date: 20060106

A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20080501

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20090210

A02 Decision of refusal

Free format text: JAPANESE INTERMEDIATE CODE: A02

Effective date: 20090610