Movatterモバイル変換


[0]ホーム

URL:


US6286028B1 - Method and apparatus for conducting electronic commerce - Google Patents

Method and apparatus for conducting electronic commerce
Download PDF

Info

Publication number
US6286028B1
US6286028B1US09/203,280US20328098AUS6286028B1US 6286028 B1US6286028 B1US 6286028B1US 20328098 AUS20328098 AUS 20328098AUS 6286028 B1US6286028 B1US 6286028B1
Authority
US
United States
Prior art keywords
business
business object
frontend
backend
class
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.)
Expired - Lifetime
Application number
US09/203,280
Inventor
Mitchell Adam Cohen
Tracy Mark Harris
Martin Clarence Sturzenbecker
James Allen Walters
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.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
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 International Business Machines CorpfiledCriticalInternational Business Machines Corp
Priority to US09/203,280priorityCriticalpatent/US6286028B1/en
Assigned to INTERNATIONAL BUSINESS MACHINES CORPORATIONreassignmentINTERNATIONAL BUSINESS MACHINES CORPORATIONASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: HARRIS, TRACY MARK, COHEN, MITCHELL ADAM, STURZENBECKER, MARTIN CLARENCE, WALTERS, JAMES ALLEN
Priority to CA002348082Aprioritypatent/CA2348082C/en
Priority to PCT/US1999/005814prioritypatent/WO2000033198A1/en
Application grantedgrantedCritical
Publication of US6286028B1publicationCriticalpatent/US6286028B1/en
Anticipated expirationlegal-statusCritical
Expired - Lifetimelegal-statusCriticalCurrent

Links

Images

Classifications

Definitions

Landscapes

Abstract

A generic interface between an electronic commerce frontend and a business management backend is provided via an object oriented computer program product. In operation, the program creates one or more specific business objects from a plurality of specific business object classes. The program also provides a framework within which the business objects travel. A first framework instance is coupled to the frontend, and a second framework instance is coupled to the backend. In response to a request from the frontend or backend, the framework instance coupled to the requesting end creates a specific business object to perform the requested operation. Specific Business Objects are derived from a common class containing the methods required by the framework, a specific business object class containing the methods for performing a specific business function (e.g., order, provide production information, etc.), a frontend adapter class containing the methods for mapping data from the frontend to the business object, and a backend adapter class containing the methods for mapping data from the business object to a backend.

Description

BACKGROUND OF THE INVENTION
To conduct business on the INTERNET a company must separate its internal business data (e.g., customer profiles, accounts receivable, etc.) from its WEB commerce server. Conventionally, two applications are required, a business management backend application which contains and manages the company's internal business data, and a WEB commerce frontend application with which customers interact via the INTERNET.
The frontend and backend applications are connected via a firewall which prevents INTERNET access to the backend application. However, to enable the frontend and the backend applications to successfully execute the many different commercial operations (e.g., placing an order, obtaining product information, obtaining customer information, obtaining order status, etc.) that arise, requires considerable time and effort. Specifically, each frontend and each backend application typically employs diverse database schemes, program calls, application programming interfaces (APIs) or common-gateway interfaces (CGIs). To compound the problem, the database schemes, program calls, APIs and CGIs of each application may vary with each new release of the application, and companies may frequently change or customize their commercial operations. Accordingly, a generic interface which can be quickly adapted to new frontend and new backend applications is required, as is a method of enabling easily customizable commercial operations.
SUMMARY OF THE INVENTION
The present invention provides an object-oriented computer program product for providing a generic interface between an electronic commerce frontend and a business management backend. The inventive program is carried by a medium readable by a computer (e.g., a carrier wave signal, a floppy disc, a hard drive, a random access memory). The computer readable medium contains object-oriented program code which provides a plurality of object classes from which a specific business object (e.g., an order business object, product information business object, etc.) can be created. The computer readable medium also contains object-oriented program code for mapping data between the frontend and the backend applications, and for transferring data by transferring a specific business object, which is loaded with the data, between the frontend and the backend applications.
Additionally, the computer readable medium contains object-oriented program code for providing a framework within which the specific business objects travel. The framework comprises an environment means for providing data relevant to performing business data manipulations within the framework (e.g., database driver locations, business object class names, and various communications details). A listener object is operatively coupled to the environment means, and to the frontend or the backend application, for receiving an operation ID from the frontend or the backend application. The listener object accesses the environment means to determine a business object class identified by the operation ID, and creates a business object of the identified business object class. The inventive framework further comprises at least one business framework object operatively coupled to both the listener object and the environment means for receiving business objects created by the listener object and for executing a method of each received business object; and a communications object operatively coupled to the at least one business framework object and to the environment means, for sending and receiving business objects to and from both the at least one business framework object and a remote framework.
The code for creating a specific business object provides a common business object class containing methods required by the framework within which the business object is to travel; at least one specific business object class containing data variables and methods specific to the operation to be performed by a business object of the specific business object class; a frontend adapter class containing methods for adapting to a specific frontend application; a backend adapter class containing methods for adapting to a specific backend application; and code for creating a business object derived from the common business object class, the specific business object class, the frontend adapter class and the backend adapter class.
When the source code for the first framework instance is compiled, a base adapter class set is created. The base adapter class set is created by inheriting the common business object class, inheriting the specific business object class, inheriting the frontend adapter class containing the frontend mapping methods and inheriting a backend adapter class containing the backend mapping methods. Thereafter, in operation, the first framework instance receives an operation ID from the frontend application. The operation ID identifies the specific base adapter class from which a business object is to be created (e.g., via a lookup table in the environment means). The data to be transferred by the specific business object class may be provided with the operation ID, or may be loaded into the specific business object in a subsequent step. Thereafter, the specific business object is created from the identified base adapter class, is loaded with data and is transported to a remote framework instance via the communications object. Within the remote framework the data carried by the specific business object is unloaded from the specific business object to the backend application (e.g., by executing an outbound( ) method of the specific business object). The data and methods inherited from the appropriate frontend and backend adapter classes provide the specific business object with the information required to map the data to and from the frontend and the backend, respectively.
Because data mapping information is contained in a separate class (e.g., the “frontend adapter class” and the “backend adapter class”) the mapping code can be easily customized for use with one or more frontends and/or one or more backends. An instance of the inventive framework is coupled to each frontend and each backend application. In operation, relevant data is taken from a frontend application or a backend application and placed in a business object readable by each framework instance, making the invention both generic and extensible. The business objects may be customized without requiring revision of the framework. Accordingly, the code for the framework and for the business objects can be packaged separately.
Other objects, features and advantages of the present invention will become more fully apparent from the following detailed description of the preferred embodiments, the appended claims and the accompanying drawings.
BRIEF DESCRIPTION OF THE DRAWINGS
The present invention is described with reference to the accompanying drawings. In the drawings, like reference numbers indicate identical or functionally similar elements. Additionally, the left-most digit of a reference number identifies the drawing in which the reference number first appears.
FIG. 1 is schematic diagram of an inventive Framework Instance for providing a generic interface between an electronic commerce frontend and a business management backend;
FIG. 2 is a schematic diagram of a processing system in which a plurality of the inventive Framework Instances of FIG. 1 are executing;
FIG. 3 is a schematic diagram of a Business Object class hierarchy for the Business Object class set of the present invention;
FIG. 4 is a process flow diagram useful in explaining the operation of the processing system of FIG. 2 during the transfer of business data from a backend application to a frontend application;
FIG. 5 is a flowchart of the pertinent processing steps that occur during business data transfer within the processing system of FIG. 2; and
FIG. 6 is a mapping chart for an exemplary Order Business Object showing the mapping of frontend order information from a frontend application to a backend application.
DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENTS
FIG. 1 is a schematic diagram of aninventive Framework Instance101 for providing a generic interface between an electronic commerce frontend and a business management backend (as described below with reference to FIGS.2-6). The Framework Instance101 comprises, in pertinent part, aListener Object103, at least one Business Framework Object (preferably, an Object Factory Object105 operatively coupled to theListener Object103 and a BusinessObject Collection Object107 operatively coupled to the Object FactoryObject105, although a single object may be employed to perform the functions of the Object FactoryObject105 and the Business Object Collection Object107), and aTransport Object109 operatively coupled to the Object FactoryObject105 and to the Business Object CollectionObject107. TheFramework Instance101 further comprises a Logging andPersistence Object111 operatively coupled to theObject Factory Object105 and to theTransport Object109, aManager Object113 operatively coupled to each Object103-111 and anEnvironment Object115 accessible by each Object103-113.
In general, the Framework Instance101 operates in both a send and a receive mode. In a send mode the Framework Instance101 collects relevant data (e.g., from an electronic commerce frontend or a business management backend) in the form of a Business Object (described below) and sends the Business Object to a remote Framework Instance coupled to a remote frontend or backend application. In a receive mode the FrameworkInstance101 receives a Business Object from a remote Framework Instance and performs processing on the Business object, transferring the Business Object's relevant data to a frontend or a backend application coupled to the inventive Framework Instance.
More specifically, in the send mode, theListener Object103 “listens” for a trigger sent from an external application, and in response to the trigger collects information indicative of the process to be performed by the Framework Instance101 (i.e., collects an operation ID). The operation ID identifies the type of Business Object (BO) required for execution of the process to be performed (i.e., the current process) and theListener Object103 creates a Business Object of the identified type from a pre-existing Base Adapter Class (described below). TheListener Object103 then passes the Business Object and the location information for the external application (e.g., a handle to a socket on which the trigger occurred) to the Object FactoryObject105.
The Object Factory Object105 receives the Business Object and the external application location information and executes a first load method (i.e., a load( ) method) of the Business Object. The load method collects a key from the external application that identifies the location of business data relevant to the current process and stores the key within the Business Object. The Object FactoryObject105 then passes the Business Object to the Business Object CollectionObject107.
The Business Object CollectionObject107 receives the Business Object and executes a second load method (i.e., an inbound method) of the Business Object. The inbound( ) method, with use of the key, collects relevant business data from the external application and loads the Business Object therewith. Once loaded with the relevant business data, the Business Object is passed to theTransport Object109. The Transport Object109 receives the Business Object and transports it to a remote Framework Instance where the relevant business data is transferred to a remote backend or frontend application.
To avoid inadvertent data loss during processing of the Business Object within both theFramework Instance101 and the remote Framework Instance, the Logging andPersistence Object111 performs a backup function. Specifically, the Logging andPersistence Object111 receives the key from the Object FactoryObject105 and stores the key in a backup file to prevent loss of business data if an error occurs during processing. Alternately, the Logging andPersistence Object111 may store the Business Object itself. The key, however, is the only information required to recreate a Business Object with the relevant business data stored therein.
TheManager Object113 executes the startup routine for the Framework Instance101, including the startup of each Object103-111. TheManager Object113 also manages the execution threads for each Business Object, and reads Framework Instance environment information (e.g., database driver locations, Business Object class names, and various communications details) stored within an external file and stores this information within theEnvironment Object115. TheEnvironment Object115 provides the environment information to each Object101-113 as further described below.
Similarly, when theFramework Instance101 is in the receive mode, theTransport Object109 receives a Business Object that has been loaded with business data and transported to theFramework Instance101 by a remote Framework Instance. Once the Business Object is received by theTransport Object109, theTransport Object109 passes the Business Object to theObject Factory Object105.
TheObject Factory Object105 receives the Business Object, accesses theEnvironment Object115 to obtain environment information about the Framework Instance101 (e.g., the location of files for logging errors and progress of the Business Object within the Framework Instance101) and loads the Business Object with the relevant environment information. Thereafter, theObject Factory Object105 passes the Business Object to the BusinessObject Collection Object107.
The BusinessObject Collection Object107 receives the Business Object and executes a write method (i.e., an outbound( ) method) of the Business Object. The outbound( ) method transfers the business data from the Business Object to an external application (e.g., to an electronic commerce frontend or a business management backend). Following execution of the outbound( ) method, the Business Object is transported back to the remote Framework Instance wherein the Business Object deletes the backup key stored by the remote Framework Instance's Logging and Persistence Object (e.g., for housekeeping purposes).
FIG. 2 is a schematic diagram of aprocessing system201 in which a plurality of the Framework Instances of the present invention are executing. Theprocessing system201 comprises a frontend INTERNET commerce application203 (e.g., IBM's NetCommerce, Domino Merchant, Oracle's Internet Commerce Server, a custom commerce system, etc.), and a backend Electronic Resource Program (ERP) vendor application205 (e.g, System Software Associates' Business Process Control System, J.D. Edwards' World and One-World Systems, etc.). The frontendINTERNET commerce application203 and the backendERP vendor application205 are connected through afirewall207 via instances of the inventive Framework. Specifically afirst Framework Instance101ais operatively coupled to the frontendINTERNET commerce application203, and asecond Framework Instance101bis operatively coupled to the backendERP vendor application205. Thefirst Framework Instance101aand thesecond Framework Instance101bmay be executing on the same computer as the frontendINTERNET commerce application203 and the backendERP vendor application205, respectively, (e.g., an AS/400™, Windows-NT™, AIXT™, OS/390™ etc.) or may be executing on computers which are networked with computers executing the frontendINTERNET commerce application203 and the backendERP vendor application205, respectively. Note that if the frontendINTERNET commerce application203 and the backendERP vendor application205 are executing on the same computer, only one framework instance is required. In such a case, theTransport Object109 is not needed, and the Business Object completes all its operations within the single framework instance.
The frontendINTERNET commerce application203 contains afrontend database203awhich stores data relating to various commercial functions (e.g., placing an order, obtaining customer information, checking order status, etc.), and afrontend API203bfor accessing and extending the frontend function as is conventional. The frontendINTERNET commerce application203, however, has been modified slightly to include a routine which passes a trigger and an operation ID to thefirst Framework Instance101ain response to the frontendINTERNET commerce application203's various frontend commercial functions. Likewise, the backendERP vendor application205 contains abackend database205awhich stores data relating to (e.g., processing an order, processing customer information, providing order status, etc.), and abackend API205b, as is conventional for accessing and extending the backend function. The backendERP vendor application205, however, has been modified slightly to include a routine which passes a trigger and an operation ID to thesecond Framework Instance101bin response to the backendERP vendor application205's various backend commercial functions (e.g., providing order status information, providing product availability information, etc.).
The frontendINTERNET commerce application203 is further operatively coupled to theINTERNET209 via aWEB server211. Theprocessing system201 also includes additional frontend applications, represented generally by thereference number213, which are operatively coupled to theINTERNET209 via theWEB server211, and which are operatively coupled to thefirst Framework Instance101a.
Specifically, like the frontendINTERNET commerce application203, eachadditional frontend application213 contains a frontend database and a frontend API (not shown), and each additional frontend application's frontend API has been modified to include an exit routine which passes a predetermined key to thefirst Framework Instance101a. Theprocessing system201 also includes additional backend applications, represented generally by thereference number215. Like the backendERP vendor application205, eachadditional backend application215 contains a backend database and a backend API (not shown), and each additional backend application's backend API has been modified to include an exit routine which passes a predetermined key to thesecond Framework Instance101b. The details of the business Objects that operate within theFramework Instances101a,101b, are now described.
A set of Business Object classes is employed to collect, to supply and to transport business data (i.e., to perform business data manipulations) between the frontendINTERNET commerce application203 and the backendERP vendor application205. The Business Object class set contains data variables and methods required to perform business data manipulations using theFramework Instances101a,101bsuch as:
(1) the specific methods required by eachFramework Instance101a,101bto perform business data manipulations therein;
(2) the methods required to interface with the frontendINTERNET commerce application203 and the backendERP vendor application205 or any other frontend or backend applications within the processing system201 (e.g., theadditional frontend applications213 and the additional backend applications215); and
(3) the methods which control the business data manipulation activities of each Business Object within theFramework Instances101a,101b.
To instantiate a Business Object from the set of Business Object classes, theListener Object103 receives a trigger and collects an operation ID which identifies the required Business Object type (e.g, an order Business Object, a customer information Business Object, product information Business Object, a product availability Business Object, an order status Business Object, etc.). When multiple frontend and backend applications are employed, the operation ID also identifies the relevant frontend and backend applications. TheListener Object103 then creates a Business Object of the identified type. The Business Object of the identified type is created from a pre-existing Base Adapter Class set. The Base Adapter Class set comprises a Base Adapter Class for each possible permutation of (1) a Specific Business Object Class; (2) a Frontend Adapter Class; and (3) a Backend Adapter Class, and is formed as described below with reference to FIG.3.
FIG. 3 is a schematic diagram of the hierarchy for an exemplary Business Object class set301, and is useful in explaining the creation of an inventive Business Object for performing business data manipulations within theFramework Instances101a,101bof FIG.2. In general, the Business Object class set301 comprises a CommonBusiness Object Class303, a Specific Business Object Class set305 having a plurality of SpecificBusiness Object Classes305a-e(one for each type of business transaction), a Frontend Adapter Class set307 having a plurality ofFrontend Adapter Classes307a-c(one for each unique frontend application), a Backend Adapter Class set309 having a plurality ofBackend Adapter Classes309a-d(one for each unique backend application) and a Base Adapter Class set311 having a plurality ofBase Adapter Classes311a-n(described below). A customizedAdapter Class313 also may be employed. Abstract classes are shown in phantom.
Through inheritance of the appropriate Business Object classes from the Business Object class set301, a Base Adapter Class is created having all methods and data variables required to perform the desired business data manipulations within the frontend and backend Framework Instances. The operation ID identifies the appropriate Base Adapter Class and theListener Object103 creates a Business Object therefrom. Each Base Adapter Class is created (when the source code for each framework instance is compiled) by traversing the Business Object class set301's hierarchy as follows:
(1) Methods and data variables common to all Business Objects are provided by the CommonBusiness Object Class303. Thus, only a single Common Business Object Class is provided.
(2) Based on the particular business data manipulations to be performed (e.g., an order, obtaining customer information, product information, product availability or order status, etc.) by the Business Object, one of the SpecificBusiness Object Classes305a-eis selected. The selected Specific Business Object Class inherits the CommonBusiness Object Class303 and provides additional methods and/or data variables specific to the business data manipulations to be performed by the Business Object.
(3) The Frontend Adapter Class appropriate for the frontend application being employed is selected from the Frontend Adapter Class set307, and the selected Frontend Adapter Class inherits the selected Specific Business Object Class and provides additional methods and/or data variables that allow data to be mapped between the frontend application and the Business Object.
(4) The Backend Adapter Class appropriate for the backend application being employed is selected from the BackendAdapter Class set309. The selected Backend Adapter Class inherits the selected Frontend Adapter Class and provides additional methods and/or data variables that allow data to be mapped between the backend application and the Business Object.
(5) A Base Adapter Class is then created by inheriting the selected Backend Adapter Class. The created Base Adapter Class thus contains all of the methods and data variables required to map data from the selected frontend application to an inventive Business Object, and to map data from the inventive Business Object to the selected backend application. The Base Adapter Class is a non-abstract class from which actual Business Objects may be created. Because a Base Adapter Class is required for each permutation of a Specific Business Object Class, a Frontend Adapter Class and a Backend Adapter Class, the number of Base Adapter Classes within the Base Adapter Class set311 equals the number of Specific Business Object Classes times the Frontend Adapter Classes times the number of Backend Adapter Classes (e.g., for the exemplary Business Object Class set301 of FIG.3, 5 Specific BusinessObject Classes times 3 FrontendAdapter Classes times 4 Backend Adapter Classes equals 60 Base Adapter Classes). Additional methods and/or data variables may be provided via theCustomized Adapter Class313 if desired.
The specific methods contained within each class of the Business Object class set301 are described below.
At the highest level of the Business Object class set301, aFramework Object Interface315 defines class methods that must be implemented by a Business Object for the Business Object to function properly within eachFramework Instance101a,101b. Every Business Object therefore contains these methods. In the preferred embodiment, the class methods defined by theFramework Object Interface315 include the load( ) method, the addBothread( ) method, the destroy( ) method and the runstate( ) method.
The load( ) method is executed by theObject Factory Object105 to collect a key that identifies the location of business data relevant to a current process. The addBOthread( ) method adds a created Business Object to a thread to allow execution of the Business Object (e.g., via the Object's runstate( ) method). The destroy( ) method releases a thread on which a Business Object is running, allowing the thread to be returned to a Framework Instance's thread pool. The runstate( ) method is a state method that controls travel of a Business Object between theFramework Instances101a,101band the Business object's inbound( ) and outbound( ) methods.
Subordinate to theFramework Object Interface315 is the CommonBusiness Object Class303. The CommonBusiness Object Class303 is the parent class of all Business Object classes and contains the methods and the data variables common to all Business Objects within theFramework Instances101a,101b. For instance, the CommonBusiness Object Class303 implements the addBothread( ) method and the destroy( ) method required by eachFramework Instance101a,101b, defines a unique identifier variable for each type of Business Object, defines a state variable for controlling the runstate( ) method of each Business Object, and the like. If theFramework Instances101a,101bare programmed using JAVA, the CommonBusiness Object Class303 implements the Serializable Interface (e.g., for use when transporting a Business Object between the first and thesecond Framework Instances101a,101b) and the Cloneable Interface (e.g., to replicate a Business Object when a single Business Object cannot transport all the data). The CommonBusiness Object Class303 also implements theFramework Object Interface315.
The Specific Business Object Class set305 comprises an OrderBusiness Object Class305a, a Customer InformationBusiness Object Class305b, a Product InformationBusiness Object Class305c, a Product AvailabilityBusiness Object Class305dand an Order StatusBusiness Object Class305e. Each SpecificBusiness Object Class305a-edefines methods and/or data variables specific to performing the Class' particular function. For example, the OrderBusiness Object Class305adefines methods and data variables specific to obtaining order information from a frontend application and to transferring the order information to a backend application. Similarly, the Customer InformationBusiness Object Class305bdefines functions specific to obtaining customer information from a frontend application and to transferring the customer information to a backend application. In general, nearly every type of business data that must be shared between a frontend and backend application can be communicated via the Specific Business Object Class set305. As previously described, theListener Object103 selects one of the SpecificBusiness Object Classes305a-ebased on the operation ID.
The Specific Business Object Class selected inherits the CommonBusiness Object Class303 and thus also contains all methods and data variables of the CommonBusiness Object Class303. The selected Specific Business Object Class also serves as a data store for the particular business data to be processed.
The Frontend Adapter Class set307 comprises a firstFrontend Adapter Class307a, a secondFrontend Adapter Class307band a thirdFrontend Adapter Class307c. EachFrontend Adapter Class307a-cdefines methods and/or data variables specific to mapping business data between a Business Object and the frontend application associated with the adapter. EachFrontend Adapter Class307a-cis derived from the selected Specific Business Object Class and thus also contains all methods and data variables of the selected Specific Business Object Class (e.g., the OrderBusiness Object Class305ain FIG.3). The selected Frontend Adapter Class provides the required interface to the frontend APIs, commands and databases for the frontend application associated with the selected Frontend Adapter Class. For the OrderBusiness Object Class305aof FIG. 3, theFrontend Adapter Class307aprovides the required interface for performing the inboundo method that loads business data from the frontend application to the Business Object.
The Backend Adapter Class set309 comprises a firstBackend Adapter Class309a, a secondBackend Adapter Class309b, a thirdBackend Adapter Class309c, and a fourthBackend Adapter Class309d. EachBackend Adapter Class309a-ddefines methods and/or data variables specific to mapping business data between a Business Object and the backend application associated with the adapter. EachBackend Adapter Class309a-dis derived from the selected Frontend Adapter Class and thus also contains all methods and data variables of the selected Frontend Adapter Class (e.g., the firstFrontend Adapter Class307ain FIG.3). The selected Backend Adapter Class provides the required interface to the backend APIs, commands and databases (e.g, providing the interface for the outbound( ) method that transfers business data from a Business Object to the backend application). A significant advantage of the Frontend Adapter Class set307 and the Backend Adapter Class set309 is that other frontend or backend applications can be employed merely by providing an additional Frontend Adapter Class or an additional Backend Adapter Class, respectively.
The Base Adapter Class set311 comprises a first through a sixtiethBase Adapter Class311a-n. Each Base Adapter Class is derived from a particular Specific Business Object Class, a particular Frontend Adapter Class and a particular Backend Adapter Class and thus contains all methods and/or data variables required for a Business Object to perform its specific business functions and to map data between the particular frontend and backend applications. For example, theBase Adapter Class311aof FIG. 3 contains all methods and/or data variables required to perform an Order Business Object's functions (provided by the OrderBusiness Object Class305a) and to map data between the first frontend application and the first backend application (provided by the firstFrontend Adapter Class307aand the firstBackend Adapter Class309a, respectively). Additional methods and/or data variables may be provided by theBase Adapter Class311, however, theBase Adapter Class311's main function is to serve as a non-abstract class from which the desired Business Object is created.
The Business Object class hierarchy of FIG. 3 is implemented using a single inheritance object-oriented programming language (e.g, JAVA). Multiple inheritance object-oriented programming languages (e.g., C++) also may be employed to implement the Business Object class set301 with a different hierarchy structure that achieves the same result.
FIG. 4 is a process flow diagram useful in explaining the operation of theprocessing system201 of FIG. 2 during the transfer of business data from the backendERP vendor application205 to the frontendINTERNET commerce application203. FIG. 5 is a flowchart of the pertinent processing steps that occur during business data transfer within theprocessing system201.
With reference to FIG. 4, thefirst Framework Instance101acomprises afirst Listener Object103a, a firstObject Factory Object105a, a first BusinessObject Collection Object107aand afirst Transport Object109ainterconnected as previously described with reference to FIG.1. Thefirst Framework Instance101aalso comprises a first Logging and Persistence Object111a, a first Manager Object113aand a first Environment Object115a(not shown). Thesecond Framework Instance101bcomprises asecond Listener Object103b, a secondObject Factory Object105b, a second BusinessObject Collection Object107band asecond Transport Object109binterconnected as previously described with reference to FIG. 1, and a second Logging and Persistence Object111b, a second Manager Object113band a second Environment Object115b(not shown).
The frontendINTERNET commerce application203 includes atrigger program401 operatively coupled to thefirst Listener Object103a, to the firstObject Factory Object105aand to thefrontend database203a. Thetrigger program401 supplies thefirst Listener Object103awith a trigger and an operation ID to initiate processing within thefirst Framework Instance101a(as previously described). Thetrigger program401 also supplies the key that identifies the location of the relevant business data within thefrontend database203a. Note that the backendERP vendor application205 also may include a trigger program that operatively couples to thesecond Listener Object103b, to the secondObject Factory Object105band to thebackend database205bto allow transfer of business data from the backendERP vendor application205 to the frontendINTERNET commerce application203.
Thetrigger program401 may comprise program code which is added to the frontendINTERNET commerce application203 or merely a function conventionally performed by the frontendINTERNET commerce application203 which is used to trigger theListener Object103a(e.g., performing a database read, adding a message to a message queue, connecting to a socket). Similarly, an Object Request Broker environment with a remote procedure call or any other inter-process call may constitute thetrigger program401.
To place an order, a customer accesses the frontendINTERNET commerce application203 via theINTERNET209. Specifically, the customer employs a WEB browser to access theWEB server211, which in turn interfaces the frontendINTERNET commerce application203. The customer may wish to browse a catalog, place an order or query the status of a previous order via theWEB server211.
When a customer places an order, various order information must be shared between the backend and the frontend application (e.g., the order number, customer information, the item ordered, etc.). In general, order information is collected from the customer by theWEB server211, is transferred to the frontendINTERNET commerce application203, is stored in thefrontend database203aand then is transferred from the frontendINTERNET commerce application203 to the backendERP vendor application205 via theFramework Instances101a,101band an appropriate Business Object. Mapping of the order information also must be performed as the order information is transferred between the frontendINTERNET commerce application203 and the backendERP vendor application205. As described below, order information mapping occurs during the inboundo and outbound( ) methods.
TABLES 1-3 below represent exemplary customer information necessary for a customer order to be processed by the frontendINTERNET commerce application203. TABLES 1-3 therefore exist within thefrontend database203aof the frontendINTERNET commerce application203. TABLE 1 comprises the order number (ORDERNUM), the shopper number (ORSHOPPERNUM) that identifies the customer placing the order, the date the order was placed (ORDERDATE) and the status of the order (ORDERSTATUS). The exemplary data in TABLE 1 shows that the order has been assigned order number 11234 by the frontendINTERNET commerce application203, the customer has been assigned shopper number 1005 by the frontendINTERNET commerce application203, the order was placed on Oct. 12, 1492 (14921012) and the order status is pending (P).
TABLE 1
ORDERS table:
Column nameSample Data
ORDERNUM  11234
ORSHOPPERNUM  1005
ORDERDATE14921012
ORDERSTATUSP
TABLE 2 comprises the shopper number (SHOPPERNUM), the customer's first name (SHOPPERFNAME), the customer's last name (SHOPPERLNAME), the customer's city (SHOPPERCITY) and the customer's state (SHOPPERSTATE). The data in TABLE 2 shows that the customer has been assigned shopper number 1005 by the frontendINTERNET commerce application203, the customer's name is Chris Columbus, the customer's city is Plymouth Rock and the customer's state is Massachusetts.
TABLE 2
SHOPPER table:
Column nameSample Data
SHOPPERNUM1005
SHOPPERFNAMEChris
SHOPPERLNAMEColumbus
SHOPPERCITYPlymouth Rock
SHOPPERSTATEMA
TABLE 3 comprises the number of the item ordered by the customer (ITEMNUMBER), the order number (ITORDERNUM), a description of the item ordered (ITEMDESC), the price of the item ordered (ITEMPRICE) and the quantity of the item ordered (ITEMQTY). The data in TABLE 3 shows that item number 99876 was ordered, the order was assigned order number 11234, the item ordered was a compass at a price of $9.95 and one compass was ordered.
TABLE 3
ITEMS table:
Column nameSample Data
ITEMNUM99876
ITORDERNUM11234
ITEMDESCCompass
ITEMPRICE9.95
ITEMQTY1
With reference to FIGS. 4 and 5, in step (1), thetrigger program401 sends a trigger to thefirst Listener Object103aindicating that order information is present within thefrontend database203athat must be transferred to thebackend database205afor processing within the backendERP vendor application205. The trigger is preferably accomplished by having thetrigger program401 connect to a TCP/IP port provided by thefirst Listener Object103a, and by having thefirst Listener Object103alisten for socket connections to the port. The address of the TCP/IP port may be stored in the first Environment Object115a.
In response to the trigger from thetrigger program401, thefirst Listener Object103acollects from thetrigger program401 an operation ID that identifies the type of Business Object that must be created to carry the order information. By examining the contents of the first Environment Object115a, wherein a Base Adapter Class for each Specific Business Object Class, Frontend Adapter Class and Backend Adapter Class permutation is assigned an operation ID, thefirst Listener Object103adetermines the appropriate Business Object to create as indicated by the received operation ID. Thereafter, in step (2), thefirst Listener Object103acreates (via the appropriate Base Adapter Class of FIG. 3) a Business Object of the appropriate Specific Business Object Class, in this example an Order Business Object, and passes the Order Business Object and atrigger program401 pointer (e.g., a handle to the TCP/IP socket) to the firstObject Factory Object105a.
As previously described with reference to FIG. 3, when a Business Object is created, the Business Object is provided with a runstate( ) method for controlling travel of a Business Object between Framework Instances. Initially, the runstate( ) is in a “zero-state” and the Business Object (in this example an Order Business Object) executes only zero-state methods (e.g., the inboundo method to collect business data from the frontend INTERNET commerce application203). After the Order Business Object is transported to thesecond Framework Instance101b, the one-state methods are executed (e.g., the outbound( ) method for storing business data in the backend ERP vendor application205).
In step (3) the firstObject Factory Object105areceives the Order Business Object, receives thetrigger program401 pointer, and executes the load method of the Order Business Object. The load method uses thetrigger program401 pointer to collect a key that identifies the location within thefrontend database203aof the order information (e.g., TABLES 1-3) to be transferred to the backendERP vendor application205. In the example order of TABLES 1-3, the order number (ORDERNUM) 11234 is the key passed to the firstObject Factory Object105aand stored in a data variable “OrderNumber” of the Order Business Object. With knowledge of the order number, the Order Business Object has a pointer to each TABLE 1-3 (e.g., via ORDERNUM in TABLE 1, via SHOPPERNUM in TABLE 2 and via ITEMORDERNUM in TABLE 3).
In step (4) the firstObject Factory Object105apasses the Order Business Object (containing the key) to the first BusinessObject Collection Object107a. Also, the key is passed to the first Logging and Persistence Object111afor backup purposes (as previously described).
In step (5) the first BusinessObject Collection Object107areceives the Order Business Object and assigns the Order Business Object a thread for execution of its zero-state runstate( ) method. The zero-state runstate( ) method executes the inboundo method that uses the key (e.g., the order number) to collect the order information from thefrontend database203a. Information such as the name of thefrontend database203a, the driver used to connect to thefrontend database203a, the connection parameters and the any required password are suppled to the first BusinessObject Collection Object107avia the first Environment Object115a. The first BusinessObject Collection Object107astores the order information within a data store of the Order Business Object. Thereafter, the Order Business Object is passed to thefirst Transport Object109a.
In step (6) thefirst Transport Object109areceives the Order Business Object and transports it to thesecond Transport Object109bof thesecond Framework Instance101b. The transport of the Order Business Object between thefirst Transport Object109aand thesecond Transport Object109bmay be achieved in many ways and with many different communications protocols. For instance, TCP/IP sockets, message queuing middleware or any other method for sending a string of data may be used. Preferably thefirst Transport Object109aestablishes a socket connection to thesecond Transport Object109b. Thefirst Transport Object109athen serializes the order Business Object and sends it over the open socket connection to thesecond Transport Object109b. Before sending the Order Business Object, the state variable accessed by the runstate( ) method of the Object is incremented to the one-state.
In step (7) thesecond Transport Object109breceives the Order Business Object from thefirst Transport Object109aand de-serializes the Order Business Object. The Order Business Object then is passed to the secondObject Factory Object105bwhere, in step (8), the Order Business Object is loaded with information specific to thesecond Framework Instance101b(e.g., the location of files for logging errors and progress of the Order Business Object within thesecond Framework Instance101b) from the second Environment Object115b. The Order Business Object then is passed to the second BusinessObject Collection Object107b.
In step (9), the second BusinessObject Collection Object107bprovides the Order Business Object with a new thread for execution of the Order Business Object's runstate( ) method (which is now the one-state). Executing the one-state runstate( ) method executes the outbound( ) method. The outbound( ) method transfers the order information from the Order Business Object to thebackend database205a. Information about thebackend database205a(e.g., the database's name, the driver used to connect to thebackend database205a, the database's connection parameters and any required password) are provided to the Order Business Object via the second Environment Object115b.
TABLES 4 and 5 show how the order information obtained from thefrontend database203ais organized within theexemplary backend database205a. TABLE 4 comprises a backend order number (OHORDERNUM), the date the order was placed (OHORDERDATE), the name of the customer who placed the order (OHNAME), the customer's city (OHCITY) and the customer's state (OHSTATE). The data in TABLE 4 contains new data (e.g., the backend order number), data common to frontend TABLES 1 and 2 (e.g, the order date and customer information), and concatenated information (e.g., OHNAME which comprises the first and the last name of the customer). TABLE 5 comprises the item number ordered by the customer (OLITEMNUMBER), the backend order number (OLORDERNUM), the price of the item ordered (OLITEMPRICE) and the quantity ordered (OLITEMQTY).
TABLE 4
ORDER_HEADER table:
Column nameSample Data
OHORDERNUM 908070
OHORDERDATE14921012
OHNAMEChris Columbus
OHCITYPlymouth R
OHSTATEMA
TABLE 5
ORDER_LINEITEM table:
Column nameSample DataSample Data
OLITEMNDM9987699543
OLORDERNUM908070908070
OLITEMPRICE9.952.89
OLITEMQTY13
As can be seen with reference to TABLES 1-5, there is no direct relationship between the manner in which the order information is stored within thefrontend database203a(the particular columns and rows, the data types, etc.) and the manner in which the order information is stored within thebackend database205a. To ensure that the proper frontend data is properly placed within thebackend database205a, mapping occurs as the order information is read into the Order Business Object (during the inboundo method within the first BusinessObject Collection Object107a) and as the order information is transferred to thebackend database205afrom the Order Business Object (during the outbound( ) method within the second BusinessObject Collection Object107b).
Mapping business data between a frontend application and a backend application is performed by:
(1) defining the information required by the backend application (e.g., the required order information);
(2) defining the information available from the frontend application; and
(3) building a common data model for a Business Object that can be loaded with the available frontend information and used to populate the backend application.
For instance, the order information required by the backendERP vendor application205 during an order is listed in TABLES 4 and 5, and the order information available from the frontendINTERNET commerce application203 is listed in TABLES 1-3. While all order information required by the backendERP vendor application205 is present in TABLES 1-3 (stored within thefrontend database203a), the order information in TABLES 1-3 is organized differently than the order information within the backend ERP vendor application205 (organized as shown in TABLES 4 and 5). Accordingly, data mapping is required.
FIG. 6 is amapping chart601 for the Order Business Object showing the frontend order information stored within the frontendINTERNET commerce application203 being mapped into the format required by the backendERP vendor application205. Themapping chart601 comprises afirst column603 that identifies the frontend table wherein the frontend order information is stored, asecond column605 that identifies the specific column of the frontend table wherein the frontend order information is stored, andthird column607 that identifies the data type (e.g., integer, character, etc.) for the order information stored in the specific column. Thus, columns603-607 represent how order information is arranged within the frontendINTERNET commerce application203.
Themapping chart601 further comprises afourth column609 that identifies the Order Business Object data variable wherein the frontend order information is to be stored and afifth column611 that identifies the data type to which the frontend order information must be converted for storage within the Order Business Object data variable. Thus, columns609-611 represent the common data model for storage of data within the Order Business Object.
Themapping chart601 further comprises asixth column613 that identifies the backend table wherein the frontend order information is to be stored, aseventh column615 that identifies the specific column of the backend table wherein the frontend order information is to be stored, and aneighth column617 that identifies the data type to which the frontend order information must be converted for storage within the specific backend column. Aninth column619 is provided merely to indicate any alterations (type conversions, truncations, etc.) that must be made to the frontend order information before it is stored within thebackend database205a.
The Order Business Object that transfers order information from the frontendINTERNET commerce application203 to the backendERP vendor application205 is created based on the Order Business Object's common data model. That is, the inboundo method of the Order Business Object performs the mapping and alterations of the frontend order information required for storage of the frontend order information within the Order Business Object in the common data model format as the order information is loaded from thefrontend database203ainto the Order Business Object. Likewise, the outbound( ) method performs the mapping and alterations of the order information stored within the Order Business Object required for storage of the order information within the backendERP vendor application205 as the order information is loaded from the Order Business Object into thebackend database205a. In this manner, a new frontend application can be interfaced with thefirst Framework Instance101amerely by providing a frontend adapter class for the new frontend application that maps frontend information from its frontend format to the common data model format; and the existing backend adapter classes need not be modified. New backend applications for thesecond Framework Instance101bmay be similarly provided.
The foregoing description discloses only the preferred embodiments of the invention, modifications of the above disclosed apparatus and method which fall within the scope of the invention will be readily apparent to those of ordinary skill in the art. For instance, a Business Object may be created within the Object Factory object105 rather than within theListener Object103, and the business data itself rather than the key may be sent to a Business Object from the trigger program. As well, composition/containment methods may be used to create a Base Business Object which contains an instance of a specific frontend adapter class, an instance of a specific backend adapter class, an instance of a data object class and an instance of a state object class (for controlling the operation of the Business Object). An instance of a data object class and an instance of a state object class can be included in the Base Business Object Class.
In addition, mapping of frontend application business data between a frontend application and a Business Object, and between a Business Object and a backend application may be performed automatically (e.g., without hard coding the inbound( ) and outbound( ) methods of the Business Object for the particular frontend and backend applications being employed) by automatically creating amapping chart601 for the frontend and the backend applications of interest. The frontend application provides columns603-607 of themapping chart601, the backend application provides columns615-619 of themapping chart601, and the Business Object consults themapping chart601 to find the necessary pointers (e.g., columns603-605) and data conversions (e.g., column607) for mapping data from the frontend application to the Business Object (e.g., into the data variables and format of columns609-611), and to find the necessary pointers (e.g., columns613-615) and data conversions (e.g., column617) for mapping data from the Business Object to the backend application.
Accordingly, while the present invention has been disclosed in connection with the preferred embodiments thereof, it should be understood that other embodiments may fall within the spirit and scope of the invention, as defined by the following claims.

Claims (20)

The invention claimed is:
1. An object-oriented computer program product for providing a generic interface between an electronic commerce frontend and a business management backend, comprising:
a medium readable by a computer, the computer readable medium having:
means for providing a plurality of business object classes, each business object class for providing a business object having:
means for mapping data between the frontend and the backend; and
means for transferring data between the frontend and the backend by transferring the business object therebetween.
2. The computer program product of claim1 wherein the mapping means comprises a frontend adapter class for inheritance by each business object class and a backend adapter class for inheritance by each business object class.
3. The computer program product of claim1 wherein the transfer means comprises a state mechanism.
4. The computer program product of claim1 wherein the plurality of business object classes comprises at least one each of an order business object class, a customer information business object class, a product information business object class, a product availability business object class, and an order status business object class.
5. An object-oriented computer program product for providing a generic interface between an electronic commerce frontend and a business management backend, comprising:
a medium readable by a computer, the computer readable medium having:
a framework having:
an environment means for providing data relevant to performing business data manipulations within the framework;
a listener object coupled to the environment means, for coupling to the frontend or the backend, for receiving an operation ID from the frontend or the backend, for accessing the environment means to determine a business object class identified by the operation ID, and for creating a business object of the identified business object class;
at least one business framework object operatively coupled to both the listener object and the environment means for receiving business objects created by the listener object and for executing methods of each received business object; and
a communications object operatively coupled to the at least one business framework object and to the environment means, for sending and receiving business objects to and from both the at least one business framework object and a remote framework.
6. The computer program product of claim5 wherein the at least one business framework object is for executing both an inbound and an outbound method of the created business object.
7. The computer program product of claim6 wherein the at least one business framework object comprises:
a first framework object coupled to the listener object for receiving from the listener object:
a) the created business object; and
b) a handle to the frontend or the backend that transmitted the operation ID;
and for executing a load method of the created business object to load, from the transmitting frontend or backend, a key which identifies the location of business data to be transported by the created business object.
8. The computer program product of claim7 wherein the at least one business framework object further comprises:
a second framework object coupled to the first framework object and to the communications object for executing the business object's inbound method, and wherein the business object's inbound method uses the key to import data required by the created business object from the frontend or the backend location identified by the key.
9. The computer program product of claim7 wherein the at least one business framework object further comprises:
a second framework object coupled to the first framework object and to the communications object for executing the business object's outbound method.
10. The computer program product of claim6 wherein the communications object is for serializing business objects to be sent to a remote framework, and for deserializing business objects received from a remote framework.
11. An object-oriented computer program product for forming a business object to be used within a generic framework interface between an electronic commerce frontend and a business management backend, comprising:
a medium readable by a computer, the computer readable medium having:
a common business object class containing methods required by the framework within which the business object is to travel;
at least one specific business object class containing data variables and methods specific to the operation to be performed by a business object of the specific business object class;
a frontend adapter class containing methods for adapting to a specific frontend;
a backend adapter class containing methods for adapting to a specific backend; and
means for creating a business object derived from the common business object class, the specific business object class, the frontend adapter class and the backend adapter class.
12. The computer program product of claim11 wherein the common business object class comprises a state mechanism and a method for adding business object threads.
13. The computer program product of claim11 wherein the at least one specific business object class comprises a state mechanism for executing the operation to be performed by a business object of the specific business object class.
14. The computer program product of claim13 wherein the state mechanism accesses an environment means which contains data relevant to performing the operation of a business object of the specific business object class.
15. A computer based method for creating by inheritance a generic business object to interface between an electronic commerce frontend and a business management backend, comprising:
inheriting a common business object class containing methods required by a framework within which business objects are to travel;
inheriting a plurality of specific business object classes, each specific business object class having data variables and methods specific to an operation to be performed by business objects of the specific business object class;
inheriting a frontend adapter class for mapping data from the frontend or the backend to a business object; and
inheriting a backend adapter class for mapping data from a business object to the frontend or the backend.
16. The computer based method of claim15 further comprising creating a plurality of base adapter classes by inheriting each possible permutation of specific business object classes, frontend adapter classes and backend adapter classes.
17. A computer based method for providing a generic interface between an electronic commerce frontend and a business management backend, comprising:
receiving an operation ID from the frontend or the backend;
determining a business object class identified by the operation ID;
creating a business object of the identified business object class by:
inheriting a common business object class containing methods required by a framework within which the created business objects is to travel;
inheriting a specific business object class having data variables and methods specific to an operation to be performed by the created business object;
inheriting an inbound adapter class for mapping data from the frontend or the backend to the created business object; and
inheriting an outbound adapter class for mapping data from the created business object to the frontend or the backend; and
transporting the created business object to a remote framework instance.
18. The computer based method of claim17 further comprising:
receiving from the frontend or the backend which transmitted the operation ID, a key identifying the location of data required by the created object's data variables; and
loading the data into the created business object.
19. The computer program product of claim1 further comprising:
means for providing a framework having:
an environment means for providing data relevant to performing business data manipulations within the framework;
a listener object coupled to the environment means, for coupling to the frontend or the backend, for receiving an operation ID from the frontend or the backend, for accessing the environment means to determine a business object class identified by the operation ID, and for creating a business object of the identified business object class;
at least one business framework object operatively coupled to both the listener object and the environment means for receiving business objects created by the listener object and for executing methods of each received business object; and
a communications object operatively coupled to the at least one business framework object and to the environment means, for sending and receiving business objects to and from both the at least one business framework object and a remote framework.
20. The computer program product of claim5 further comprising:
a common business object class containing methods required by the framework within which the business object is to travel;
at least one specific business object class containing data variables and methods specific to the operation to be performed by a business object of the specific business object class;
a frontend adapter class containing methods for adapting to a specific frontend;
a backend adapter class containing methods for adapting to a specific backend; and
means for creating a business object derived from the common business object class, the specific business object class, the frontend adapter class and the backend adapter class.
US09/203,2801998-12-011998-12-01Method and apparatus for conducting electronic commerceExpired - LifetimeUS6286028B1 (en)

Priority Applications (3)

Application NumberPriority DateFiling DateTitle
US09/203,280US6286028B1 (en)1998-12-011998-12-01Method and apparatus for conducting electronic commerce
CA002348082ACA2348082C (en)1998-12-011999-03-18Method and apparatus for conducting electronic commerce
PCT/US1999/005814WO2000033198A1 (en)1998-12-011999-03-18Method and apparatus for conducting electronic commerce

Applications Claiming Priority (1)

Application NumberPriority DateFiling DateTitle
US09/203,280US6286028B1 (en)1998-12-011998-12-01Method and apparatus for conducting electronic commerce

Publications (1)

Publication NumberPublication Date
US6286028B1true US6286028B1 (en)2001-09-04

Family

ID=22753291

Family Applications (1)

Application NumberTitlePriority DateFiling Date
US09/203,280Expired - LifetimeUS6286028B1 (en)1998-12-011998-12-01Method and apparatus for conducting electronic commerce

Country Status (3)

CountryLink
US (1)US6286028B1 (en)
CA (1)CA2348082C (en)
WO (1)WO2000033198A1 (en)

Cited By (62)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US20020087879A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for synchronous communication between a public electronic environment and a private electronic environment
US20020087421A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for providing an entitled price in an electronic transaction
US20020087477A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for providing an electronic order confirmation in an electronic transaction
US20020124045A1 (en)*2000-12-222002-09-05Moore David CarltonInterface between front-end systems and back-end systems
US6449627B1 (en)*2000-01-212002-09-10International Business Machines Corp.Volume management method and system for a compilation of content
US20020188739A1 (en)*2001-06-072002-12-12International Business Machines CorporationEnterprise service delivery technical framework
US6601233B1 (en)1999-07-302003-07-29Accenture LlpBusiness components framework
US20030158784A1 (en)*2002-02-152003-08-21Teranet Enterprises Inc.Method and system for constructing price structures for complex products and services
US20030188024A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for a cloaking service for use with a distributed virtual enterprise
US20030187670A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for distributed virtual enterprise project model processing
US20030187748A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for manipulation of cost information in a distributed virtual enterprise
US20030187669A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for distributed virtual enterprise dependency objects
US20030187671A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for manipulation of scheduling information in a distributed virtual enterprise
EP1376337A1 (en)*2002-06-122004-01-02Commerce One Operations, Inc.Action/command/business object application framework
FR2841999A1 (en)*2002-07-052004-01-09Thales Sa OBJECT-ORIENTED NETWORKING SYSTEM OF ON-BOARD AERONAUTICAL EQUIPMENT
US6704873B1 (en)1999-07-302004-03-09Accenture LlpSecure gateway interconnection in an e-commerce based environment
US20040059749A1 (en)*2002-09-242004-03-25International Business Machines CorporationReclaiming resources in response to forced state transitions
US6718535B1 (en)1999-07-302004-04-06Accenture LlpSystem, method and article of manufacture for an activity framework design in an e-commerce based environment
US20040225508A1 (en)*2003-05-052004-11-11Urali Prem S.Reusable canonical e-business process
US20040267603A1 (en)*2003-06-272004-12-30International Business Machines CorporationReferential interface to enable commercial interaction between entities
US6839701B1 (en)2000-01-212005-01-04International Business MachinesHitmask for querying hierarchically related content entities
US20050021355A1 (en)*2003-07-222005-01-27Rainer BrendleSide-effect modeling of a service-oriented business framework
US20050060309A1 (en)*2003-09-152005-03-17Oliver ScheererQuery objects
US20050086122A1 (en)*2003-10-172005-04-21International Business Machines CorporationShopping and approval process
US6986102B1 (en)2000-01-212006-01-10International Business Machines CorporationMethod and configurable model for storing hierarchical data in a non-hierarchical data repository
US7007034B1 (en)2000-01-212006-02-28International Business Machines CorporationFile structure for storing content objects in a data repository
US7043488B1 (en)2000-01-212006-05-09International Business Machines CorporationMethod and system for storing hierarchical content objects in a data repository
US7076494B1 (en)2000-01-212006-07-11International Business Machines CorporationProviding a functional layer for facilitating creation and manipulation of compilations of content
US7089239B1 (en)2000-01-212006-08-08International Business Machines CorporationMethod and system for preventing mutually exclusive content entities stored in a data repository to be included in the same compilation of content
US7100195B1 (en)1999-07-302006-08-29Accenture LlpManaging user information on an e-commerce system
US20070050349A1 (en)*2005-08-312007-03-01Ivan SchreterObject storage and synchronization hooks for occassionally-connected devices
US20070156713A1 (en)*2005-12-272007-07-05Microsoft CorporationDatabase schema for hosting prepaid and subscription information
US20070153681A1 (en)*2005-12-292007-07-05Microsoft CorporationMessaging schema for services interaction on prepaid and subscription system
US7275038B1 (en)2000-08-182007-09-25The Crawford Group, Inc.Web enabled business to business operating system for rental car services
US7340481B1 (en)2000-01-212008-03-04International Business Machines Corp.Method and system for adding user-provided content to a content object stored in a data repository
US7356766B1 (en)2000-01-212008-04-08International Business Machines Corp.Method and system for adding content to a content object stored in a data repository
US7401097B1 (en)2000-01-212008-07-15International Business Machines CorporationSystem and method for creating compilations of content
US20080177795A1 (en)*2001-06-072008-07-24International Business Machines CorporationComputer program product and system for delivering a technical framework
US7412399B1 (en)2001-03-302008-08-12Bea Systems Inc.Designing business processes using distributed process flows
US20080319816A1 (en)*2001-06-072008-12-25International Business Machines CorporationEnterprise service delivery technical architecture
US7613993B1 (en)2000-01-212009-11-03International Business Machines CorporationPrerequisite checking in a system for creating compilations of content
US20100088391A1 (en)*2008-10-062010-04-08Frank BrunswigBackend service adaptation
US7895332B2 (en)2006-10-302011-02-22Quest Software, Inc.Identity migration system apparatus and method
US7895243B1 (en)2000-01-212011-02-22International Business Machines CorporationMethod and system for moving content in a content object stored in a data repository
US7899690B1 (en)2000-08-182011-03-01The Crawford Group, Inc.Extended web enabled business to business computer system for rental vehicle services
US7904949B2 (en)2005-12-192011-03-08Quest Software, Inc.Apparatus, systems and methods to provide authentication services to a legacy application
US8087075B2 (en)2006-02-132011-12-27Quest Software, Inc.Disconnected credential validation using pre-fetched service tickets
US8086710B2 (en)2006-10-302011-12-27Quest Software, Inc.Identity migration apparatus and method
US8108231B2 (en)2002-06-142012-01-31The Crawford Group, Inc.Method and apparatus for improved customer direct on-line reservation of rental vehicles
US8234134B2 (en)2002-06-142012-07-31The Crawford Group, Inc.Method and apparatus for customer direct on-line reservation of rental vehicles including deep-linking
US8245242B2 (en)2004-07-092012-08-14Quest Software, Inc.Systems and methods for managing policies on a computer
US8255984B1 (en)2009-07-012012-08-28Quest Software, Inc.Single sign-on system for shared resource environments
US8271309B2 (en)2006-03-162012-09-18The Crawford Group, Inc.Method and system for providing and administering online rental vehicle reservation booking services
US8429712B2 (en)2006-06-082013-04-23Quest Software, Inc.Centralized user authentication system apparatus and method
US20130290883A1 (en)*2012-04-272013-10-31Tina MarseilleIn place creation of objects
US8589777B1 (en)2000-01-212013-11-19International Business Machines CorporationMethod and system for calculating cost of a compilation of content
US8600783B2 (en)2000-08-182013-12-03The Crawford Group, Inc.Business to business computer system for communicating and processing rental car reservations using web services
US20140143279A1 (en)*2012-11-212014-05-22Marco EidingerConsumer-specific business object extensibility via inheritance
CN109118130A (en)*2018-11-022019-01-01成都中科大旗软件有限公司A kind of universe tourism public service platform and its management system
US10387270B2 (en)2005-04-212019-08-20Justservice.Net LlcData backup, storage, transfer and retrieval system, method and computer program product
US10476868B2 (en)2005-04-212019-11-12Justservice.Net LlcData backup and transfer system, method and computer program product
US12012110B1 (en)2023-10-202024-06-18Crawford Group, Inc.Systems and methods for intelligently transforming data to generate improved output data using a probabilistic multi-application network

Citations (6)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US5542078A (en)1994-09-291996-07-30Ontos, Inc.Object oriented data store integration environment for integration of object oriented databases and non-object oriented data facilities
US5778349A (en)1994-11-301998-07-07Nec CorporationMethod of processing input/output request in computer system including a plurality of subsystems
US6055562A (en)*1997-05-012000-04-25International Business Machines CorporationDynamic mobile agents
US6065039A (en)*1996-11-142000-05-16Mitsubishi Electric Information Technology Center America, Inc. (Ita)Dynamic synchronous collaboration framework for mobile agents
US6106569A (en)*1997-08-142000-08-22International Business Machines CorporationMethod of developing a software system using object oriented technology
US6119101A (en)*1996-01-172000-09-12Personal Agents, Inc.Intelligent agents for electronic commerce

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US5603031A (en)*1993-07-081997-02-11General Magic, Inc.System and method for distributed computation based upon the movement, execution, and interaction of processes in a network
US5627979A (en)*1994-07-181997-05-06International Business Machines CorporationSystem and method for providing a graphical user interface for mapping and accessing objects in data stores

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US5542078A (en)1994-09-291996-07-30Ontos, Inc.Object oriented data store integration environment for integration of object oriented databases and non-object oriented data facilities
US5778349A (en)1994-11-301998-07-07Nec CorporationMethod of processing input/output request in computer system including a plurality of subsystems
US6119101A (en)*1996-01-172000-09-12Personal Agents, Inc.Intelligent agents for electronic commerce
US6065039A (en)*1996-11-142000-05-16Mitsubishi Electric Information Technology Center America, Inc. (Ita)Dynamic synchronous collaboration framework for mobile agents
US6055562A (en)*1997-05-012000-04-25International Business Machines CorporationDynamic mobile agents
US6106569A (en)*1997-08-142000-08-22International Business Machines CorporationMethod of developing a software system using object oriented technology

Cited By (118)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US6601233B1 (en)1999-07-302003-07-29Accenture LlpBusiness components framework
US7100195B1 (en)1999-07-302006-08-29Accenture LlpManaging user information on an e-commerce system
US6718535B1 (en)1999-07-302004-04-06Accenture LlpSystem, method and article of manufacture for an activity framework design in an e-commerce based environment
US6704873B1 (en)1999-07-302004-03-09Accenture LlpSecure gateway interconnection in an e-commerce based environment
US8589777B1 (en)2000-01-212013-11-19International Business Machines CorporationMethod and system for calculating cost of a compilation of content
US7076494B1 (en)2000-01-212006-07-11International Business Machines CorporationProviding a functional layer for facilitating creation and manipulation of compilations of content
US6449627B1 (en)*2000-01-212002-09-10International Business Machines Corp.Volume management method and system for a compilation of content
US7356766B1 (en)2000-01-212008-04-08International Business Machines Corp.Method and system for adding content to a content object stored in a data repository
US7007034B1 (en)2000-01-212006-02-28International Business Machines CorporationFile structure for storing content objects in a data repository
US7613993B1 (en)2000-01-212009-11-03International Business Machines CorporationPrerequisite checking in a system for creating compilations of content
US7340481B1 (en)2000-01-212008-03-04International Business Machines Corp.Method and system for adding user-provided content to a content object stored in a data repository
US7401097B1 (en)2000-01-212008-07-15International Business Machines CorporationSystem and method for creating compilations of content
US6839701B1 (en)2000-01-212005-01-04International Business MachinesHitmask for querying hierarchically related content entities
US7895243B1 (en)2000-01-212011-02-22International Business Machines CorporationMethod and system for moving content in a content object stored in a data repository
US9003282B2 (en)2000-01-212015-04-07International Business Machines CorporationMethod and system for managing volumes within a compilation of content
US7043488B1 (en)2000-01-212006-05-09International Business Machines CorporationMethod and system for storing hierarchical content objects in a data repository
US6986102B1 (en)2000-01-212006-01-10International Business Machines CorporationMethod and configurable model for storing hierarchical data in a non-hierarchical data repository
US7089239B1 (en)2000-01-212006-08-08International Business Machines CorporationMethod and system for preventing mutually exclusive content entities stored in a data repository to be included in the same compilation of content
US10929920B2 (en)2000-08-182021-02-23The Crawford Group, Inc.Business to business computer system for communicating and processing rental car reservations using web services
US8600783B2 (en)2000-08-182013-12-03The Crawford Group, Inc.Business to business computer system for communicating and processing rental car reservations using web services
US7275038B1 (en)2000-08-182007-09-25The Crawford Group, Inc.Web enabled business to business operating system for rental car services
US7899690B1 (en)2000-08-182011-03-01The Crawford Group, Inc.Extended web enabled business to business computer system for rental vehicle services
US8401881B2 (en)2000-08-182013-03-19The Crawford Group, Inc.Extended web enabled business to business computer system for rental vehicle services
US8340989B2 (en)2000-08-182012-12-25The Crawford Group, Inc.Method and system for managing rental vehicle reservations with user authorization limits
US8374894B2 (en)2000-10-202013-02-12The Crawford Group, Inc.Extended web enabled multi-featured business to business computer system for rental vehicle services
US7328440B2 (en)*2000-12-222008-02-05Gxs, Inc.Interface between front-end systems and back-end systems
US20020124045A1 (en)*2000-12-222002-09-05Moore David CarltonInterface between front-end systems and back-end systems
US6999949B2 (en)2000-12-292006-02-14International Business Machines CorporationMethod, system and program product for providing an electronic order confirmation in an electronic transaction
US7487472B2 (en)*2000-12-292009-02-03International Business Machines CorporationMethod, system and program product for synchronous communication between a public electronic environment and a private electronic environment
US20020087879A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for synchronous communication between a public electronic environment and a private electronic environment
US7386474B2 (en)2000-12-292008-06-10International Business Machines CorporationMethod, system and program product for providing an entitled price in an electronic transaction
US20020087477A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for providing an electronic order confirmation in an electronic transaction
US20020087421A1 (en)*2000-12-292002-07-04International Business Machines CorporationMethod, system and program product for providing an entitled price in an electronic transaction
US8478602B2 (en)*2001-03-302013-07-02Oracle International CorporationExecuting business processes using persistent variables
US20080306746A1 (en)*2001-03-302008-12-11Racca Felix GExecuting business processes using persistent variables
US20080300928A1 (en)*2001-03-302008-12-04Racca Felix GPublishing and deploying business processes
US7412399B1 (en)2001-03-302008-08-12Bea Systems Inc.Designing business processes using distributed process flows
US20080319816A1 (en)*2001-06-072008-12-25International Business Machines CorporationEnterprise service delivery technical architecture
US7653525B2 (en)2001-06-072010-01-26International Business Machines CorporationEnterprise service delivery technical architecture
US20080177795A1 (en)*2001-06-072008-07-24International Business Machines CorporationComputer program product and system for delivering a technical framework
US7885804B2 (en)2001-06-072011-02-08International Business Machines CorporationComputer program product and system for delivering a technical framework
US8051154B2 (en)*2001-06-072011-11-01International Business Machines CorporationEnterprise service delivery technical framework
US20020188739A1 (en)*2001-06-072002-12-12International Business Machines CorporationEnterprise service delivery technical framework
US7343325B2 (en)2002-02-152008-03-11Teranet Enterprises Ltd.Method and system for constructing price structures for complex products and services
US20030158784A1 (en)*2002-02-152003-08-21Teranet Enterprises Inc.Method and system for constructing price structures for complex products and services
US8671024B2 (en)2002-03-282014-03-11Ebay Inc.Method and system for manipulation of cost information in a distributed virtual enterprise
US20030187671A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for manipulation of scheduling information in a distributed virtual enterprise
US20070239563A1 (en)*2002-03-282007-10-11Kumhyr David BMethod and system for manipulation of cost information in a distributed virtual enterprise
US20030188024A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for a cloaking service for use with a distributed virtual enterprise
US20100205102A1 (en)*2002-03-282010-08-12Kumhyr David BMethod and System for Manipulation of Scheduling Information in a Distributed Virtual Enterprise
US7818753B2 (en)*2002-03-282010-10-19International Business Machines CorporationMethod and system for distributed virtual enterprise dependency objects
US7469216B2 (en)2002-03-282008-12-23International Business Machines CorporationMethod and system for manipulation of cost information in a distributed virtual enterprise
US20070250338A1 (en)*2002-03-282007-10-25Kumhyr David BMethod and system for manipulation of cost information in a distributed virtual enterprise
US8682734B2 (en)2002-03-282014-03-25Ebay Inc.Method and system for manipulation of cost information in a distributed virtual enterprise
US20030187670A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for distributed virtual enterprise project model processing
US20030187748A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for manipulation of cost information in a distributed virtual enterprise
US20030187669A1 (en)*2002-03-282003-10-02International Business Machines CorporationMethod and system for distributed virtual enterprise dependency objects
EP1376337A1 (en)*2002-06-122004-01-02Commerce One Operations, Inc.Action/command/business object application framework
US8396728B2 (en)2002-06-142013-03-12The Crawford Group, Inc.Method and apparatus for improved customer direct on-line reservation of rental vehicles
US8108231B2 (en)2002-06-142012-01-31The Crawford Group, Inc.Method and apparatus for improved customer direct on-line reservation of rental vehicles
US8234134B2 (en)2002-06-142012-07-31The Crawford Group, Inc.Method and apparatus for customer direct on-line reservation of rental vehicles including deep-linking
US8706534B2 (en)2002-06-142014-04-22The Crawford Group, Inc.Method and apparatus for customer direct on-line reservation of rental vehicles including deep-linking
WO2004006096A3 (en)*2002-07-052004-04-15Thales SaObject-oriented networking system for onboard aeronautical equipment items
FR2841999A1 (en)*2002-07-052004-01-09Thales Sa OBJECT-ORIENTED NETWORKING SYSTEM OF ON-BOARD AERONAUTICAL EQUIPMENT
US20060059497A1 (en)*2002-07-052006-03-16Stephane LericheObject-oriented system for networking onboard aeronautical equipment items
US7143106B2 (en)2002-09-242006-11-28International Business Machines CorporationReclaiming resources in response to forced state transitions
US20040059749A1 (en)*2002-09-242004-03-25International Business Machines CorporationReclaiming resources in response to forced state transitions
US20040225508A1 (en)*2003-05-052004-11-11Urali Prem S.Reusable canonical e-business process
US20090106091A1 (en)*2003-06-272009-04-23International Business Machines CorporationReferential interface to enable commercial interaction between entities
US7509269B2 (en)2003-06-272009-03-24International Business Machines CorporationReferential interface to enable commercial interaction between entities
US8055543B2 (en)2003-06-272011-11-08International Business Machines CorporationReferential interface to enable commercial interaction between entities
US20040267603A1 (en)*2003-06-272004-12-30International Business Machines CorporationReferential interface to enable commercial interaction between entities
US20050021355A1 (en)*2003-07-222005-01-27Rainer BrendleSide-effect modeling of a service-oriented business framework
US7860902B2 (en)*2003-07-222010-12-28Sap AgSide-effect modeling
US20050060309A1 (en)*2003-09-152005-03-17Oliver ScheererQuery objects
US20090076838A1 (en)*2003-10-172009-03-19International Business Machines CorporationShopping and approval process
US20050086122A1 (en)*2003-10-172005-04-21International Business Machines CorporationShopping and approval process
US7840445B2 (en)2003-10-172010-11-23International Business Machines CorporationMethod, system, and program storage device for processing electronic requisitions
US7454369B2 (en)2003-10-172008-11-18International Business Machines CorporationSynchronous electronic requisition processing methods
US8533744B2 (en)2004-07-092013-09-10Dell Software, Inc.Systems and methods for managing policies on a computer
US8713583B2 (en)2004-07-092014-04-29Dell Software Inc.Systems and methods for managing policies on a computer
US8245242B2 (en)2004-07-092012-08-14Quest Software, Inc.Systems and methods for managing policies on a computer
US9130847B2 (en)2004-07-092015-09-08Dell Software, Inc.Systems and methods for managing policies on a computer
US11436095B2 (en)2005-04-212022-09-06Justservice.Net LlcData backup, storage, transfer and retrieval system, method and computer program product
US11425116B2 (en)2005-04-212022-08-23Justservice.Net LlcData backup and transfer system, method and computer program product
US10476868B2 (en)2005-04-212019-11-12Justservice.Net LlcData backup and transfer system, method and computer program product
US10387270B2 (en)2005-04-212019-08-20Justservice.Net LlcData backup, storage, transfer and retrieval system, method and computer program product
US9152398B2 (en)2005-08-312015-10-06Sap SeObject storage and synchronization hooks for occasionally-connected devices
US8566808B2 (en)2005-08-312013-10-22Sap AgObject storage and synchronization hooks for occasionally-connected devices
US20070050349A1 (en)*2005-08-312007-03-01Ivan SchreterObject storage and synchronization hooks for occassionally-connected devices
US20090249315A1 (en)*2005-08-312009-10-01Ivan SchreterObject storage and synchronization hooks for occasionally-connected devices
US7565365B2 (en)*2005-08-312009-07-21Sap AgObject storage and synchronization hooks for occasionally-connected devices
US7904949B2 (en)2005-12-192011-03-08Quest Software, Inc.Apparatus, systems and methods to provide authentication services to a legacy application
USRE45327E1 (en)2005-12-192015-01-06Dell Software, Inc.Apparatus, systems and methods to provide authentication services to a legacy application
US20070156713A1 (en)*2005-12-272007-07-05Microsoft CorporationDatabase schema for hosting prepaid and subscription information
US7693936B2 (en)*2005-12-292010-04-06Microsoft CorporationMessaging schema for services interaction on prepaid and subscription system
US20070153681A1 (en)*2005-12-292007-07-05Microsoft CorporationMessaging schema for services interaction on prepaid and subscription system
US9288201B2 (en)2006-02-132016-03-15Dell Software Inc.Disconnected credential validation using pre-fetched service tickets
US8087075B2 (en)2006-02-132011-12-27Quest Software, Inc.Disconnected credential validation using pre-fetched service tickets
US8584218B2 (en)2006-02-132013-11-12Quest Software, Inc.Disconnected credential validation using pre-fetched service tickets
US8271309B2 (en)2006-03-162012-09-18The Crawford Group, Inc.Method and system for providing and administering online rental vehicle reservation booking services
US8862488B2 (en)2006-03-162014-10-14The Crawford Group, Inc.Method and system for providing and administering online rental vehicle reservation booking services
US8862487B2 (en)2006-03-162014-10-14The Crawford Group, Inc.Method and system for providing and administering online rental vehicle reservation booking services
US8429712B2 (en)2006-06-082013-04-23Quest Software, Inc.Centralized user authentication system apparatus and method
US8978098B2 (en)2006-06-082015-03-10Dell Software, Inc.Centralized user authentication system apparatus and method
US8086710B2 (en)2006-10-302011-12-27Quest Software, Inc.Identity migration apparatus and method
US7895332B2 (en)2006-10-302011-02-22Quest Software, Inc.Identity migration system apparatus and method
US8966045B1 (en)2006-10-302015-02-24Dell Software, Inc.Identity migration apparatus and method
US8346908B1 (en)2006-10-302013-01-01Quest Software, Inc.Identity migration apparatus and method
US20100088391A1 (en)*2008-10-062010-04-08Frank BrunswigBackend service adaptation
US9576140B1 (en)2009-07-012017-02-21Dell Products L.P.Single sign-on system for shared resource environments
US8255984B1 (en)2009-07-012012-08-28Quest Software, Inc.Single sign-on system for shared resource environments
US20130290883A1 (en)*2012-04-272013-10-31Tina MarseilleIn place creation of objects
US10203841B2 (en)*2012-04-272019-02-12Sap SeIn place creation of objects
US20140143279A1 (en)*2012-11-212014-05-22Marco EidingerConsumer-specific business object extensibility via inheritance
CN109118130A (en)*2018-11-022019-01-01成都中科大旗软件有限公司A kind of universe tourism public service platform and its management system
US12012110B1 (en)2023-10-202024-06-18Crawford Group, Inc.Systems and methods for intelligently transforming data to generate improved output data using a probabilistic multi-application network
US12233883B1 (en)2023-10-202025-02-25Crawford Group, Inc.Systems and methods for intelligently transforming data to generate improved output data using a probabilistic multi-application network

Also Published As

Publication numberPublication date
CA2348082A1 (en)2000-06-08
WO2000033198A1 (en)2000-06-08
CA2348082C (en)2002-11-05

Similar Documents

PublicationPublication DateTitle
US6286028B1 (en)Method and apparatus for conducting electronic commerce
US6738975B1 (en)Extensible distributed enterprise application integration system
AU776938B2 (en)Extensible distributed enterprise application integration system
US6430556B1 (en)System and method for providing a query object development environment
US8056091B2 (en)Systems and methods for using application services
US6976262B1 (en)Web-based enterprise management with multiple repository capability
US7831655B2 (en)System and method for implementing a service adapter
US6714928B1 (en)Development system providing HTML database control object
US6421684B1 (en)Persistent volume mount points
US6438559B1 (en)System and method for improved serialization of Java objects
EP1010310B1 (en)Universal adapter framework and providing a global user interface and global messaging bus
US8307109B2 (en)Methods and systems for real time integration services
US5884317A (en)Service interface repository
US8074228B2 (en)Systems and methods for providing mockup business objects
US6601072B1 (en)Method and system for distribution of application data to distributed databases of dissimilar formats
US20020033843A1 (en)System and method for mobile software application development and deployment
HUP0102564A2 (en) Computer application integration system, improved enterprise system, agent adapter and method for message passing between first and second computer applications
WO2003044661A1 (en)System and method for implementing a service adapter
US6917930B1 (en)Database integrity in an internet e-commerce environment
US20050080759A1 (en)Transparent interface to a messaging system from a database engine
US6292824B1 (en)Framework and method for facilitating client-server programming and interactions
Papaioannou et al.Mobile agent technology in support of sales order processing in the virtual enterprise
WO2001069431A2 (en)System and method for automating business processes and performing data interchange operations in a distributed computing environment
HollowayEngineering Analysis and Literature Review of the use of CORBA on Distributed Object-Oriented Systems
JPH09237209A (en) Data storage method

Legal Events

DateCodeTitleDescription
ASAssignment

Owner name:INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:COHEN, MITCHELL ADAM;HARRIS, TRACY MARK;STURZENBECKER, MARTIN CLARENCE;AND OTHERS;REEL/FRAME:009765/0660;SIGNING DATES FROM 19981130 TO 19990211

STCFInformation on status: patent grant

Free format text:PATENTED CASE

FPAYFee payment

Year of fee payment:4

FPAYFee payment

Year of fee payment:8

REMIMaintenance fee reminder mailed
FPAYFee payment

Year of fee payment:12

SULPSurcharge for late payment

Year of fee payment:11


[8]ページ先頭

©2009-2025 Movatter.jp