US20120260241A1 - System and method for generating distributed information systems - Google Patents

System and method for generating distributed information systems Download PDF

Info

Publication number
US20120260241A1
US20120260241A1 US13/524,638 US201213524638A US2012260241A1 US 20120260241 A1 US20120260241 A1 US 20120260241A1 US 201213524638 A US201213524638 A US 201213524638A US 2012260241 A1 US2012260241 A1 US 2012260241A1
Authority
US
United States
Prior art keywords
component
service
component instances
run
instances
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.)
Abandoned
Application number
US13/524,638
Inventor
Michael Feldman
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.)
SAVIGENT SOFTWARE Inc
Original Assignee
SAVIGENT SOFTWARE Inc
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 SAVIGENT SOFTWARE Inc filed Critical SAVIGENT SOFTWARE Inc
Priority to US13/524,638 priority Critical patent/US20120260241A1/en
Assigned to NASH CONTROLWARE, INC. reassignment NASH CONTROLWARE, INC. ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: FELDMAN, MICHAEL
Assigned to Savigent Software, Inc. reassignment Savigent Software, Inc. CHANGE OF NAME (SEE DOCUMENT FOR DETAILS). Assignors: NASH CONTROLWARE, INC.
Publication of US20120260241A1 publication Critical patent/US20120260241A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/60Software deployment
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/30Creation or generation of source code
    • G06F8/36Software reuse

Definitions

  • a distribution information system includes a local system repository, a run-time engine, and an active links table.
  • the local system repository stores component instance data.
  • the run-time engine creates an instance of one or more components based on the component instance data stored in the local system repository.
  • the active links table defines links between the created component instances, wherein the run-time engine manages communication between the created component instances based on the active links table.
  • FIG. 1 shows a diagram of a component which provides implementation of service protocols.
  • FIG. 2 shows a diagram illustrating the interaction of prior art components.
  • FIG. 3 shows a diagram illustrating self-sufficient components according to the present invention.
  • FIG. 4 shows an example of a system model built from components and connected by links according to the present invention.
  • FIG. 5 shows a system infrastructure according to the present invention.
  • FIG. 6 shows an architecture for creating and managing distributed information systems according to the present invention.
  • FIG. 7 shows a diagram illustrating the deployment of component instances and links to nodes.
  • FIG. 8 shows a diagram illustrating the interaction between a component instance and run-time software.
  • the architecture presented by this invention uses components as building blocks for distributed information systems. By placing components as the centerpiece of the design and development process, this invention improves on the prior use of components as application parts that are glued together by application code.
  • This invention makes another step toward generalization of components by defining them as service providers and consumers.
  • a service represents an “operation” or activity that is continuous and internal to the component. Because implementation of the service is internal to the component, external entities do not have direct access to the service. External entities can interact with the service by sending messages to and receiving messages from the service implementation (component).
  • Services are defined by protocols—collections of incoming and outgoing messages. Another way to describe service protocols is to treat incoming messages as function calls, implemented by the service, and outgoing messages as events raised by the service.
  • Service providers are responsible for implementing handlers for incoming messages as defined by the service protocol.
  • Service consumers are responsible for implementing handlers for outgoing messages as defined by the protocol. Any consumer can use any provider if they implement the same protocol.
  • This allows components to be modeled as collections of provided and consumed services. For example, a product routing component can implement routing service functionality and consume equipment service functionality of components representing factory floor equipment. Components can provide or consume any number of services. This adds flexibility to components and allows a system approach to development.
  • FIG. 1 shows component 10 , which provides implementation of service protocols by exposing ports 11 and 12 .
  • Component 10 may implement any number of service protocols as service provider and/or as service consumer. When a component 10 implements a service protocol, it exposes an access port. There are service provider port 11 and service consumer port 12 implementations of access ports, depending on required functionality. Service protocols are always defined from the provider point of view. Consumer implementation reverses direction of messages as defined in the protocol, e.g. incoming messages become outgoing, and outgoing messages are coming in. System development tools use access ports to identify available end points for the possible interconnections between component instances.
  • This example depicts a protocol for the service “Mixing Station” that has two incoming messages, “Start” and “Stop”, where the “Start” message carries the parameter “Duration” of the type “long”. It also has one outgoing message “Status” with three parameters—“Elapsed_Time” of the type “long”, “Level” of the type “double”, and “Error_Code” of the locally defined type “Errors” that can be one of the following values: “None”, “Empty”, “Motor_Failed”, or “Cycle_Completed”.
  • Service protocols are different from interfaces as defined by DCE (Distributed Computing Environment) RPC (Remote Procedure Call), COM (Component Object Model), /DCOM (Distributed COM), CORBA (Common Object Request Broker Architecture) and Java RMI (Remote Method Invocation).
  • Service protocols assume an asynchronous, bidirectional communication model, unlike the synchronous, unidirectional, RPC-based model of the above-mentioned specifications. This invention's approach frees components from being dependent on the knowledge of a peer component , but more importantly, components are not dependent on the presence of a peer at all. These prior art specifications are based on an assumption of one component being a client of the other component.
  • FIG. 2 represents the interaction of prior art components 21 and 22 , where activity 23 can occur only when the two components 21 and 22 interact.
  • Component 22 has no knowledge of the capabilities of component 21 ; component 22 is a server and component 21 is a client. Communication between components 21 and 22 is unidirectional as represented by arrow 24 . Communication is initiated with an RPC call. Activity 23 exists only in the context of the RPC call from component 21 to component 22 . In other words, component 21 has to get a reference to the peer component 22 or to the proxy of the peer by creating it, or by some other means.
  • This prior art approach also implies that one component cannot work without other components present online. That is, any activity 23 within a system can occur only when components interact.
  • FIG. 3 shows how the invention's components can interact while being self-sufficient.
  • Components 31 and 32 have corresponding activities 35 and 34 . Exchanging messages over link 33 creates additional activities 36 .
  • This invention's components 31 and 32 are different from the prior art in that they are designed to operate as stand-alone entities, with no knowledge of peers or proxies, executing their own activities 34 and 35 .
  • a run-time environment handles all communication details for the components 31 and 32 . Service consumers can come and go, as they will, without affecting functionality of the service providers. This also shifts design decisions by the component developer from functionality of the system as a whole to functionality of the component. For example, a component monitoring production output can be designed and built without knowledge of the system it will be used in.
  • Communication between components is defined not by the component developer, but by the system developer and can be changed at any time without affecting the components themselves. Communication is accomplished by creating a link 33 between a service provider component port 11 and complimentary service consumer component port 12 (see FIG. 1 ). Link implementation, provided by the system run-time, is responsible for delivering messages between connected ports. A link 33 can be created between two ports of the same component. A port can have an unlimited number of links 33 connected to it, such supporting one to many, many to one and many to many patterns. Interacting components create additional, high level activities that implement desired system functionality 36 .
  • FIG. 4 shows an example of a system model 40 built from components 41 A- 41 I (collectively referred to as components 41 ) connected by links 42 A- 42 I (collectively referred to as links 42 ).
  • components 41 A- 41 I
  • links 42 A- 42 I
  • FIG. 4 shows an example of a system model 40 built from components 41 A- 41 I (collectively referred to as components 41 ) connected by links 42 A- 42 I (collectively referred to as links 42 ).
  • FIG. 5 shows system infrastructure 50 , which includes networked developer workstations 51 A- 51 B (collectively referred to as developer workstations 51 ), user workstations 52 A- 52 B (collectively referred to as user workstations 52 ), nodes 54 A- 54 C (collectively referred to as nodes 54 ) and system repository 53 .
  • This invention prescribes an infrastructure that consists of networked computers, called nodes 54 , each hosting an instance of this invention's run-time software 55 .
  • This run-time software 55 is a container for component instances 56 A- 56 G (collectively referred to as component instances 56 ).
  • Component instances 56 and links 57 A- 57 D may be created and destroyed remotely, using system management tools.
  • Component instances 56 may be moved from node to node while preserving links 57 and configuration data.
  • Each node 54 has up-to-date configuration data, stored locally, that has all information about component instances 56 , links 57 , etc. This information allows nodes 54 to shut down and restart without any additional information required, which contributes to overall robustness of the system.
  • System Repository 53 All information about system 50 is stored in the System Repository 53 .
  • System Repository 53 includes service protocol definitions, components, component instance data, links, node deployment information, etc.
  • System Repository 53 is populated using system tools and is transparent to the user or developer. This information is not required for any of the run-time activities within the system. It can be treated as a centralized, redundant directory, and can be recreated from information stored on nodes 54 .
  • This invention presents a new architecture for creating and managing distributed information systems, shown on FIG. 6 .
  • System development starts with the modeling phase that involves developers 61 A- 61 B (collectively referred to as developers 61 ) and domain experts/users 62 A- 62 C (collectively referred to as domain experts/users 62 ).
  • New Services are defined, by means of Service Protocols 67 , using the Service Definition Tool 64 . Developers 61 and domain experts 62 contribute to this phase of development.
  • Developed service protocols are stored in the Service Protocol Repository 53 A, which is part of the System Repository 53 .
  • the Service Protocol Repository is a catalog of all defined service protocols in the system. Service protocols may be exported from and imported into the Service Protocol Repository. Service protocols can be re-used from system to system.
  • Developers 61 in collaboration with domain experts 62 , create new Components 68 that implement services based on newly defined and/or existing service protocols 67 . Developers use the Component Development Tool 65 to build components 68 and to store them in Component Repository 53 B.
  • a given component 68 may implement unlimited numbers of services, both as a consumer and as a provider.
  • Each implemented service protocol is exposed as a Service Access Port, such as service access ports 11 and 12 , shown in FIG. 1 .
  • the component developer may define Configuration Attributes. Attributes are used to configure individual instances of a component 68 .
  • Component developers use attributes to alter component functionality at run-time based on the values supplied.
  • Component Repository 53 B is a catalog of all components 68 defined in the system. As with service protocols, components 68 can be shared between multiple systems.
  • Domain experts/users 62 utilize the System Development Tool 66 to define system behavior by creating and configuring (attributes are configured) instances of components 56 A- 56 B (collectively referred to as component instances 56 ).
  • the System Development Tool 66 stores all configuration information in the Model Repository 53 C.
  • each instance 56 is given a meaningful, unique name, usually reflecting its system location and/or functionality.
  • Component instances 56 are connected through Links 57 —definitions of the communication channel.
  • a link 57 can be created between two Service Access Ports if they represent two ends of the same Service Protocol 67 , e.g. if the first port represents a service provider and the second port represents a complementary (inverse version of the same service protocol) service consumer.
  • Each port may be connected to any number of complementary ports on any number of component instances 56 , including the parent component instance itself.
  • FIG. 7 presents a deployment diagram for component instances 56 and links 57 as they are assigned to nodes 54 .
  • the user builds a Logical System Model 71 (see FIG. 6 ).
  • component instances 56 are defined but are not yet running; they have to be deployed (mapped) to the Physical System Infrastructure 72 by assigning component instances 56 to Nodes 54 , using System Development Tool 66 .
  • component instances 56 A, 56 B and 56 C are deployed to node 54 A
  • component instances 56 F, 56 G and 561 are deployed to node 54 B
  • component instances 56 D and 56 E are deployed to node 54 C.
  • Nodes 54 are networked together using any media that supports IP protocols.
  • FIG. 8 illustrates the interaction between a component instance 56 and run-time software 55 .
  • Run-time software 55 implements API (Application Programming Interface) 95 , communication 94 , Local System Repository 93 and Active Links Table 97 .
  • API Application Programming Interface
  • component instance 56 data is downloaded to the target node and stored in the Local System Repository 93 .
  • the node's Run-time Software 55 is responsible for creating an instance 56 , supplying it with configuration data and establishing links 57 .
  • Run-time software 55 is a container for component instances 56 and provides implementation of the API 95 used by the component developers 61 to access container functionality.
  • Container functionality includes timing, scheduling, configuration data access, persistence, communication 94 and security.
  • Run-time software 55 is dynamically changing, based on links 57 defined for the current node 54 . Because component instances 56 do not have any information about peers, it is the responsibility of the run-time software 55 to manage all communication details as defined by links 57 . This is in contrast with existing architectures, where run-time containers are rigid and responsibilities are shifted to component implementation. By adding programmability features to the run-time and isolating component implementation from the system composition, this invention provides a flexible component deployment infrastructure.
  • the System Development Tool 66 can be used to modify configuration data for component instances 56 . If a component instance 56 is deployed, these changes are sent to the node's 54 run-time environment 55 , which in turn notifies the component instance 56 of the changes and provides new configuration to the instance 56 . If a deployed instance 56 is deleted from the Model Repository 53 C, it would be removed from the node 54 , and all related data would be deleted from the Local System Repository 93 . All active links 57 connected to the deleted instance 56 would be shutdown and the run-time software 55 would dent any request of connection addressed to this instance 56 . Deleting an instance on one end of a link 57 automatically deletes the link 57 itself. These changes are propagated to the nodes 54 where affected component instances 56 were deployed.
  • New links 57 may be created at any time using the System Development Tool 66 . If a link 57 is created between two deployed component instances 56 , the link information is sent to the nodes 54 involved and stored in both nodes' Local System Repository 93 . Run-time software 55 then creates a logical connection and starts passing messages to and from the instance's 56 port. Establishing a link 57 is a node's 54 local operation, and is not involved in any communication with the rest of the system. This ensures that system components, such as nodes 54 and system repository 53 , can go on and off line without affecting overall system functionality. Note that this is only true if the off-line node 54 is not hosting any component instances 56 whose presence is required for normal system operation. Creating redundant component instances 56 and links 57 and distributing them across multiple nodes 54 can solve this problem, but this relates to the particular system design and is outside of the scope of this invention.

Abstract

A distribution information system includes a local system repository, a run-time engine, and an active links table. The local system repository stores component instance data. The run-time engine creates an instance of one or more components based on the component instance data stored in the local system repository. The active links table defines links between the created component instances, wherein the run-time engine manages communication between the created component instances based on the active links table.

Description

    CROSS-REFERENCE TO RELATED APPLICATION(S)
  • This application is a continuation of U.S. application Ser. No. 11/589,362 entitled “SYSTEM AND METHOD FOR GENERATING DISTRIBUTED INFORMATION SYSTEMS,” filed on Oct. 30, 2006, which is a division of U.S. application Ser. No. 09/638,491 entitled “SYSTEM AND METHOD FOR GENERATING DISTRIBUTED INFORMATION SYSTEMS,” filed on Aug. 15, 2000, which claims the benefit of Provisional Application No. 60/149,507 entitled “SYSTEM AND METHOD FOR GENERATING DISTRIBUTED INTELLIGENCE SYSTEMS,” which was filed Aug. 17, 1999. These disclosures are hereby incorporated by reference in their entirety.
  • BACKGROUND OF THE INVENTION
  • Developers of distributed information systems are faced with daunting complexities. The traditional approach to system design and development requires a monumental task of understanding constantly changing requirements, while designing and implementing the system as a whole. The requirements for the system are collected and interpreted by software developers who are not the domain experts. At the same time, people who have an intimate knowledge of the system requirements are not the software engineers.
  • There are several inherent problems with existing approaches:
  • 1. Multi-Phased Design and Development Process That is Not Extensible.
  • Difficulty in communication between developers and domain experts results in multiple iterations of a system design and multiple patches and changes to the delivered product. Such a system, when completed, becomes a legacy island in the enterprise that is impossible to change, extend, or integrate into the global information infrastructure.
  • Prior art solutions have tried to solve this major problem by introducing new languages targeted to capture requirements for the system design, such as the graphical “Use Cases” language of UML. These new languages add an extra level of complexity and require a high level of commitment from both groups involved in the design and development process. The biggest problem with this approach is that the design model is not present in the system delivered to the customer. An end user gets a system that consists of files, modules, and executables, but not of accounts, machines, units, etc. From the end users' standpoint, all of the time that went into the requirements capturing and modeling was wasted, because the system does not represent their real-world entities that they interact with, but some foreign entities forced on them by the system implementation.
  • This prior art approach does not help developers simplify the design and implementation of the system. Developers have to deal with the details of a target deployed environment, communication and hardware. An object-orientated approach to the system implementation, while helping in the design process, leaves them with monolithic applications once compiled.
  • 2. Changes are Difficult to Make.
  • This application orientation makes prior art approaches much more difficult to use in the environments where requirements are constantly changing and system complexities are increasing. Even component specifications that have been introduced did not address the distributed nature of the systems, nor did they help to solve the complexities of the development process, and were a mere extension of the client-server model of the past.
  • 3. Communication Between Applications is Limited. Monolithic applications have no way to interact with other applications deployed in the enterprise. A special integration infrastructure has to be used to build an integration layer to pull it all together. This integration is an afterthought solution that is an application by itself and has all the problems noted above.
  • 4. Difficulty in Transferring Large Amounts of Data to a Central Point.
  • With traditionally developed information systems, decision-making is centralized even though the information sources are distributed throughout the enterprise. Generally, information is transferred to a central point where it is processed. In physically distributed enterprises, with either large buildings or worldwide operations, it is very difficult to transfer large amounts of information to a central point. Often the solution is to install multiple copies of an application, each in an area of the enterprise. This results in unconnected islands, with little or no synchronization between areas.
  • 5. Not Designed for Real-Time.
  • Most prior art applications were not designed for real-time behavior. With the exception of real-time control systems, most applications were designed to run periodically, perhaps a few times a day or once a week to update inventory, send orders to the suppliers, or process production data for the last day or week. This limitation prevents businesses from immediately reacting to the needs of customers or reacting to problems with internal operations. There is a need to have all applications, including supply chain management, e-commerce and plant-floor operations, to react in real-time as an integrated enterprise.
  • BRIEF SUMMARY OF THE INVENTION
  • A distribution information system includes a local system repository, a run-time engine, and an active links table. The local system repository stores component instance data. The run-time engine creates an instance of one or more components based on the component instance data stored in the local system repository. The active links table defines links between the created component instances, wherein the run-time engine manages communication between the created component instances based on the active links table.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 shows a diagram of a component which provides implementation of service protocols.
  • FIG. 2 shows a diagram illustrating the interaction of prior art components.
  • FIG. 3 shows a diagram illustrating self-sufficient components according to the present invention.
  • FIG. 4 shows an example of a system model built from components and connected by links according to the present invention.
  • FIG. 5 shows a system infrastructure according to the present invention.
  • FIG. 6 shows an architecture for creating and managing distributed information systems according to the present invention.
  • FIG. 7 shows a diagram illustrating the deployment of component instances and links to nodes.
  • FIG. 8 shows a diagram illustrating the interaction between a component instance and run-time software.
  • DETAILED DESCRIPTION
  • The architecture presented by this invention uses components as building blocks for distributed information systems. By placing components as the centerpiece of the design and development process, this invention improves on the prior use of components as application parts that are glued together by application code. This invention makes another step toward generalization of components by defining them as service providers and consumers. A service represents an “operation” or activity that is continuous and internal to the component. Because implementation of the service is internal to the component, external entities do not have direct access to the service. External entities can interact with the service by sending messages to and receiving messages from the service implementation (component). Services are defined by protocols—collections of incoming and outgoing messages. Another way to describe service protocols is to treat incoming messages as function calls, implemented by the service, and outgoing messages as events raised by the service. Service providers are responsible for implementing handlers for incoming messages as defined by the service protocol. Service consumers are responsible for implementing handlers for outgoing messages as defined by the protocol. Any consumer can use any provider if they implement the same protocol. This allows components to be modeled as collections of provided and consumed services. For example, a product routing component can implement routing service functionality and consume equipment service functionality of components representing factory floor equipment. Components can provide or consume any number of services. This adds flexibility to components and allows a system approach to development.
  • FIG. 1 shows component 10, which provides implementation of service protocols by exposing ports 11 and 12. Component 10 may implement any number of service protocols as service provider and/or as service consumer. When a component 10 implements a service protocol, it exposes an access port. There are service provider port 11 and service consumer port 12 implementations of access ports, depending on required functionality. Service protocols are always defined from the provider point of view. Consumer implementation reverses direction of messages as defined in the protocol, e.g. incoming messages become outgoing, and outgoing messages are coming in. System development tools use access ports to identify available end points for the possible interconnections between component instances.
  • The following is an example of a service protocol definition in XML (Extensible Markup Language):
  • <Service Name = ‘Mixing Station’>
             <In>
                 <Message Name =’Start’>
                   <Parameter Name = ‘Duration’,
                   Type = long/>
                 </Message>
                 <Message Name = ‘Stop’/>
             </In>
             <Out>
                 <Message Name = ‘Status’>
                   <Parameter Name =
                   ‘Elapsed_Time’, Type = long/>
                   <Parameter Name = ‘Level’,
                   Type = double/>
                   <Parameter Name = ‘Error_Code’,
                   Type = Errors/>
                 </Message>
             </Out>
             <Type Name = ‘Errors’, Type = enum>
                 <Field Name = ‘None’, Value = 0 />
                 <Field Name = ‘Empty’, Value = 1 />
                 <Field Name = ‘Motor_Failed’, Value = 2 />
                 <Field Name = ‘Cycle_Completed’,
                 Value = 3 />
             </Type>
    </Service>
  • This example depicts a protocol for the service “Mixing Station” that has two incoming messages, “Start” and “Stop”, where the “Start” message carries the parameter “Duration” of the type “long”. It also has one outgoing message “Status” with three parameters—“Elapsed_Time” of the type “long”, “Level” of the type “double”, and “Error_Code” of the locally defined type “Errors” that can be one of the following values: “None”, “Empty”, “Motor_Failed”, or “Cycle_Completed”.
  • Service protocols are different from interfaces as defined by DCE (Distributed Computing Environment) RPC (Remote Procedure Call), COM (Component Object Model), /DCOM (Distributed COM), CORBA (Common Object Request Broker Architecture) and Java RMI (Remote Method Invocation). Service protocols, according to the present invention, assume an asynchronous, bidirectional communication model, unlike the synchronous, unidirectional, RPC-based model of the above-mentioned specifications. This invention's approach frees components from being dependent on the knowledge of a peer component , but more importantly, components are not dependent on the presence of a peer at all. These prior art specifications are based on an assumption of one component being a client of the other component. FIG. 2 represents the interaction of prior art components 21 and 22, where activity 23 can occur only when the two components 21 and 22 interact. Component 22 has no knowledge of the capabilities of component 21; component 22 is a server and component 21 is a client. Communication between components 21 and 22 is unidirectional as represented by arrow 24. Communication is initiated with an RPC call. Activity 23 exists only in the context of the RPC call from component 21 to component 22. In other words, component 21 has to get a reference to the peer component 22 or to the proxy of the peer by creating it, or by some other means. This prior art approach also implies that one component cannot work without other components present online. That is, any activity 23 within a system can occur only when components interact. In a distributed, multi-node system, this requirement is impossible to satisfy without going into extreme hardware and network solutions that are expensive, proprietary and cannot be cost-effectively deployed on a large scale. This also limits what can be modeled using this approach. Most real-world objects operate on a continuous basis, concurrently, not just during function calls, which forces developers to emulate concurrence in their components when developing for existing specifications.
  • FIG. 3 shows how the invention's components can interact while being self-sufficient. Components 31 and 32 have corresponding activities 35 and 34. Exchanging messages over link 33 creates additional activities 36. This invention's components 31 and 32 are different from the prior art in that they are designed to operate as stand-alone entities, with no knowledge of peers or proxies, executing their own activities 34 and 35. A run-time environment handles all communication details for the components 31 and 32. Service consumers can come and go, as they will, without affecting functionality of the service providers. This also shifts design decisions by the component developer from functionality of the system as a whole to functionality of the component. For example, a component monitoring production output can be designed and built without knowledge of the system it will be used in. Communication between components is defined not by the component developer, but by the system developer and can be changed at any time without affecting the components themselves. Communication is accomplished by creating a link 33 between a service provider component port 11 and complimentary service consumer component port 12 (see FIG. 1). Link implementation, provided by the system run-time, is responsible for delivering messages between connected ports. A link 33 can be created between two ports of the same component. A port can have an unlimited number of links 33 connected to it, such supporting one to many, many to one and many to many patterns. Interacting components create additional, high level activities that implement desired system functionality 36.
  • An effect of this inventive approach is simplification of system design. Because each component is a stand-alone entity, it can be designed, implemented and tested stand-alone. This greatly simplifies testing and debugging of the system because there is no additional ‘glue’ code to test and debug. It also promotes a common, domain specific terminology use within a system. For example, a control solution many use components such as sensors, pumps and valves, where a MES (Manufacturing Execution System) solution may use BOM (Bill of Materials), inventory and work cell components. Collaboration between developers and domain experts is simplified because of this and there is no need for yet another language to use.
  • In the real world, entities modeled by components are parts of a hierarchical structure, where components on the different levels are dependent on other components in the hierarchy. The old approach for modeling this decomposition, where the whole system is modeled and then components are built as parts of the whole, produces non-portable and inflexible solutions. This is a top to bottom approach. This invention reverses this approach by modeling from bottom up. This makes a lot of sense because bottom level components are more generic than components on the higher levels of a hierarchy. For example, in an industrial control system, components such as sensors, valves, motors, etc. are generic, where components directly related to that process implemented are specific to the process. In a MES system, generic components are: inventory item, work cell, final product, etc.; and non-generic components are: process manager, production sequencer, and BOM. FIG. 4 shows an example of a system model 40 built from components 41A-41I (collectively referred to as components 41) connected by links 42A-42I (collectively referred to as links 42). By building libraries of generic components 41, new systems can be created with minimal new development efforts and improved reliability by defining components 41 and linking them together with links 42.
  • Users, building solutions as defined by this invention, do not deal with applications any more—they work with the system as a whole. This is again in contrast to the prior art solutions where distributed systems are built of multiple applications. Tools, targeting domain experts/users, reinforce and promote this approach to system development. Because there is not a monolithic application anywhere in the system, but a hierarchy of components, system tools can represent a user with the picture of the system as it was originally modeled. This preservation of design representation simplifies deployment and management of a completed system, as well as communication between developers and users of the system. It also allows a continuous approach to the system implementation, where new functionality and features are added while preserving and extending existing functionality and maintaining a model up to date.
  • FIG. 5 shows system infrastructure 50, which includes networked developer workstations 51A-51B (collectively referred to as developer workstations 51), user workstations 52A-52B (collectively referred to as user workstations 52), nodes 54A-54C (collectively referred to as nodes 54) and system repository 53. This invention prescribes an infrastructure that consists of networked computers, called nodes 54, each hosting an instance of this invention's run-time software 55. This run-time software 55 is a container for component instances 56A-56G (collectively referred to as component instances 56). Component instances 56 and links 57A-57D (collectively referred to as links 57) may be created and destroyed remotely, using system management tools. These tools are used to deploy complete solutions by deploying component instances 56 to specific nodes 54. Component instances 56 may be moved from node to node while preserving links 57 and configuration data. Each node 54 has up-to-date configuration data, stored locally, that has all information about component instances 56, links 57, etc. This information allows nodes 54 to shut down and restart without any additional information required, which contributes to overall robustness of the system.
  • All information about system 50 is stored in the System Repository 53. System Repository 53 includes service protocol definitions, components, component instance data, links, node deployment information, etc. System Repository 53 is populated using system tools and is transparent to the user or developer. This information is not required for any of the run-time activities within the system. It can be treated as a centralized, redundant directory, and can be recreated from information stored on nodes 54.
  • This invention presents a new architecture for creating and managing distributed information systems, shown on FIG. 6. System development starts with the modeling phase that involves developers 61A-61B (collectively referred to as developers 61) and domain experts/users 62A-62C (collectively referred to as domain experts/users 62).
  • New Services are defined, by means of Service Protocols 67, using the Service Definition Tool 64. Developers 61 and domain experts 62 contribute to this phase of development. Developed service protocols are stored in the Service Protocol Repository 53A, which is part of the System Repository 53. The Service Protocol Repository is a catalog of all defined service protocols in the system. Service protocols may be exported from and imported into the Service Protocol Repository. Service protocols can be re-used from system to system.
  • Developers 61, in collaboration with domain experts 62, create new Components 68 that implement services based on newly defined and/or existing service protocols 67. Developers use the Component Development Tool 65 to build components 68 and to store them in Component Repository 53B. A given component 68 may implement unlimited numbers of services, both as a consumer and as a provider. Each implemented service protocol is exposed as a Service Access Port, such as service access ports 11 and 12, shown in FIG. 1. The component developer may define Configuration Attributes. Attributes are used to configure individual instances of a component 68.
  • Component developers use attributes to alter component functionality at run-time based on the values supplied. Component Repository 53B is a catalog of all components 68 defined in the system. As with service protocols, components 68 can be shared between multiple systems.
  • Domain experts/users 62 utilize the System Development Tool 66 to define system behavior by creating and configuring (attributes are configured) instances of components 56A-56B (collectively referred to as component instances 56).The System Development Tool 66 stores all configuration information in the Model Repository 53C. When created, each instance 56 is given a meaningful, unique name, usually reflecting its system location and/or functionality. Component instances 56 are connected through Links 57—definitions of the communication channel. A link 57 can be created between two Service Access Ports if they represent two ends of the same Service Protocol 67, e.g. if the first port represents a service provider and the second port represents a complementary (inverse version of the same service protocol) service consumer. Each port may be connected to any number of complementary ports on any number of component instances 56, including the parent component instance itself.
  • FIG. 7 presents a deployment diagram for component instances 56 and links 57 as they are assigned to nodes 54. By creating instances 56 of the components and connecting them by links 57, the user builds a Logical System Model 71 (see FIG. 6). At this point, component instances 56 are defined but are not yet running; they have to be deployed (mapped) to the Physical System Infrastructure 72 by assigning component instances 56 to Nodes 54, using System Development Tool 66. As shown in FIG. 7, component instances 56A, 56B and 56C are deployed to node 54A, component instances 56F, 56G and 561 are deployed to node 54B, and component instances 56D and 56E are deployed to node 54C. Nodes 54 are networked together using any media that supports IP protocols.
  • FIG. 8 illustrates the interaction between a component instance 56 and run-time software 55. Run-time software 55 implements API (Application Programming Interface) 95, communication 94, Local System Repository 93 and Active Links Table 97. Once assigned to node 54, component instance 56 data is downloaded to the target node and stored in the Local System Repository 93. The node's Run-time Software 55 is responsible for creating an instance 56, supplying it with configuration data and establishing links 57. Run-time software 55 is a container for component instances 56 and provides implementation of the API 95 used by the component developers 61 to access container functionality. Container functionality includes timing, scheduling, configuration data access, persistence, communication 94 and security. Run-time software 55 is dynamically changing, based on links 57 defined for the current node 54. Because component instances 56 do not have any information about peers, it is the responsibility of the run-time software 55 to manage all communication details as defined by links 57. This is in contrast with existing architectures, where run-time containers are rigid and responsibilities are shifted to component implementation. By adding programmability features to the run-time and isolating component implementation from the system composition, this invention provides a flexible component deployment infrastructure.
  • The System Development Tool 66 can be used to modify configuration data for component instances 56. If a component instance 56 is deployed, these changes are sent to the node's 54 run-time environment 55, which in turn notifies the component instance 56 of the changes and provides new configuration to the instance 56. If a deployed instance 56 is deleted from the Model Repository 53C, it would be removed from the node 54, and all related data would be deleted from the Local System Repository 93. All active links 57 connected to the deleted instance 56 would be shutdown and the run-time software 55 would dent any request of connection addressed to this instance 56. Deleting an instance on one end of a link 57 automatically deletes the link 57 itself. These changes are propagated to the nodes 54 where affected component instances 56 were deployed.
  • New links 57 may be created at any time using the System Development Tool 66. If a link 57 is created between two deployed component instances 56, the link information is sent to the nodes 54 involved and stored in both nodes' Local System Repository 93. Run-time software 55 then creates a logical connection and starts passing messages to and from the instance's 56 port. Establishing a link 57 is a node's 54 local operation, and is not involved in any communication with the rest of the system. This ensures that system components, such as nodes 54 and system repository 53, can go on and off line without affecting overall system functionality. Note that this is only true if the off-line node 54 is not hosting any component instances 56 whose presence is required for normal system operation. Creating redundant component instances 56 and links 57 and distributing them across multiple nodes 54 can solve this problem, but this relates to the particular system design and is outside of the scope of this invention.
  • Although the present invention has been described with reference to preferred embodiments, workers skilled in the art will recognize that changes may be made in form and detail without departing from the spirit and the scope of the invention.

Claims (8)

1. A distributed information system comprising:
a local system repository that stores component instance data;
a run-time engine that creates an instance of one or more components based on the component instance data stored in the local system repository; and
an active links table that defines links between the created component instances, wherein the run-time engine manages communication between the created component instances based on the active links table.
2. The distributed information system of claim 1, wherein managing communications between the created component instances includes scheduling component instance execution.
3. The distributed information system of claim 1, wherein created component instances operate as stand-alone entities that cannot make function calls to other created component instances.
4. A distributed information system comprising:
a plurality of component instances, each component instance implementing one or more service protocols that expose service provider ports and/or service consumer ports;
an active links table that defines links between the service provider ports and/or the service consumer ports exposed by the plurality of component instances; and
a run-time engine that hosts the plurality of component instances and uses the active links table to manage communications between the service provider ports and the service consumer ports of the plurality of component instances.
5. The distributed information system of claim 4, wherein the run-time engine schedules component instance execution of messages provided to a service consumer port of the component instance.
6. The distributed information system of claim 4, wherein the plurality of component instances operate as stand-alone entities that cannot make function calls to other created component instances.
7. A method of executing run-time software deployed in a distributed information system, the method comprising:
creating one or more component instances, each component instance having at least a service provider port or a service consumer port;
receiving messages from service provider ports of the one or more component instances; and
managing communication of received messages to service consumer ports of the one or more component instances based on links defined between ports of the component instances and stored by the run-time software in an active links table.
8. The method of claim 7, wherein managing communication of messages received from a service provider port to a service consumer port includes scheduling execution of the component instance associated with the service consumer port.
US13/524,638 1999-08-17 2012-06-15 System and method for generating distributed information systems Abandoned US20120260241A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US13/524,638 US20120260241A1 (en) 1999-08-17 2012-06-15 System and method for generating distributed information systems

Applications Claiming Priority (4)

Application Number Priority Date Filing Date Title
US14950799P 1999-08-17 1999-08-17
US09/638,491 US7150000B1 (en) 1999-08-17 2000-08-15 Component development with autonomous and compiled components to implement and consume services with components operate in edit and run mode
US11/589,362 US8225272B2 (en) 1999-08-17 2006-10-30 System and method for generating distributed information systems
US13/524,638 US20120260241A1 (en) 1999-08-17 2012-06-15 System and method for generating distributed information systems

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US11/589,362 Continuation US8225272B2 (en) 1999-08-17 2006-10-30 System and method for generating distributed information systems

Publications (1)

Publication Number Publication Date
US20120260241A1 true US20120260241A1 (en) 2012-10-11

Family

ID=37497437

Family Applications (3)

Application Number Title Priority Date Filing Date
US09/638,491 Expired - Lifetime US7150000B1 (en) 1999-08-17 2000-08-15 Component development with autonomous and compiled components to implement and consume services with components operate in edit and run mode
US11/589,362 Active 2024-05-05 US8225272B2 (en) 1999-08-17 2006-10-30 System and method for generating distributed information systems
US13/524,638 Abandoned US20120260241A1 (en) 1999-08-17 2012-06-15 System and method for generating distributed information systems

Family Applications Before (2)

Application Number Title Priority Date Filing Date
US09/638,491 Expired - Lifetime US7150000B1 (en) 1999-08-17 2000-08-15 Component development with autonomous and compiled components to implement and consume services with components operate in edit and run mode
US11/589,362 Active 2024-05-05 US8225272B2 (en) 1999-08-17 2006-10-30 System and method for generating distributed information systems

Country Status (1)

Country Link
US (3) US7150000B1 (en)

Families Citing this family (22)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7979382B2 (en) 1999-05-04 2011-07-12 Accenture Global Services Limited Component based information linking during claim processing
US7150001B1 (en) * 2001-03-19 2006-12-12 Microsoft Corporation System and method to facilitate design-time component discovery
US8832178B2 (en) 2002-11-06 2014-09-09 Noel William Lovisa Service implementation
US9521209B2 (en) 2002-11-06 2016-12-13 Code Valley Corp Pty Ltd Code generation
US8126742B2 (en) 2003-05-09 2012-02-28 Accenture Global Services Limited Automated assignment of insurable events
US7933786B2 (en) 2005-11-01 2011-04-26 Accenture Global Services Limited Collaborative intelligent task processor for insurance claims
US8141038B2 (en) * 2005-12-29 2012-03-20 International Business Machines Corporation Virtual RAS repository
US8095923B2 (en) * 2006-06-29 2012-01-10 Augusta Systems, Inc. System and method for deploying and managing intelligent nodes in a distributed network
US8166448B2 (en) * 2007-05-25 2012-04-24 Microsoft Corporation Rapid development of distributed web service
US8131663B1 (en) 2007-10-12 2012-03-06 Bonamy Taylor Apparatus for generating software logic rules by flowchart design
US8515786B2 (en) 2008-02-22 2013-08-20 Accenture Global Services Gmbh Rule generation system adapted for an insurance claim processing system
US8478769B2 (en) 2008-02-22 2013-07-02 Accenture Global Services Limited Conversational question generation system adapted for an insurance claim processing system
US8805895B2 (en) 2008-04-30 2014-08-12 International Business Machines Corporation Adaptive methodology for updating solution building block architectures and designs
US8099480B1 (en) 2008-11-25 2012-01-17 Google Inc. Scalable workflow design for automated service management
US8635585B2 (en) * 2009-02-14 2014-01-21 International Business Machines Corporation Capturing information accessed, updated and created by processes and using the same for validation of consistency
US8392896B2 (en) * 2009-03-06 2013-03-05 Microsoft Corporation Software test bed generation
US20100295376A1 (en) * 2009-05-22 2010-11-25 True Sol Innovations, Inc. Systems and methods for dynamic power allocation
US8245082B2 (en) * 2010-02-25 2012-08-14 Red Hat, Inc. Application reporting library
US8745577B2 (en) 2010-09-29 2014-06-03 International Business Machines Corporation End to end automation of application deployment
US8806434B2 (en) 2012-06-28 2014-08-12 International Business Machines Corporation Dynamically configuring an integrated development environment
US10360012B2 (en) * 2017-11-09 2019-07-23 International Business Machines Corporation Dynamic selection of deployment configurations of software applications
EP4002233A1 (en) * 2020-11-19 2022-05-25 Siemens Aktiengesellschaft Determining in which technological layer a module of a mom application is to be deployed

Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5075847A (en) * 1989-05-26 1991-12-24 Hewlett-Packard Company Method and apparatus for computer program encapsulation
US5421015A (en) * 1987-08-21 1995-05-30 Wang Laboratories, Inc. Multitasking system having an application integration mechanism for linking differently typed data objects
US5872973A (en) * 1995-10-26 1999-02-16 Viewsoft, Inc. Method for managing dynamic relations between objects in dynamic object-oriented languages
US5884078A (en) * 1997-01-31 1999-03-16 Sun Microsystems, Inc. System, method and article of manufacture for creating an object oriented component having multiple bidirectional ports for use in association with a java application or applet
US5999729A (en) * 1997-03-06 1999-12-07 Continuum Software, Inc. System and method for developing computer programs for execution on parallel processing systems
US6253252B1 (en) * 1996-07-11 2001-06-26 Andrew Schofield Method and apparatus for asynchronously calling and implementing objects
US6336147B1 (en) * 1995-03-22 2002-01-01 Sun Microsystems, Inc. Method and apparatus for managing connections for communication among objects in a distributed object system
US6434598B1 (en) * 1996-07-01 2002-08-13 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server graphical user interface (#9) framework in an interprise computing framework system
US6564368B1 (en) * 1998-10-01 2003-05-13 Call Center Technology, Inc. System and method for visual application development without programming
US6671742B1 (en) * 1999-06-15 2003-12-30 At&T Corp. Method and apparatus for unifield control and data event exchange in a software system
US6910075B2 (en) * 2001-11-14 2005-06-21 Emc Corporation Dynamic RDF groups

Family Cites Families (43)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5301320A (en) * 1991-06-28 1994-04-05 Digital Equipment Corporation Workflow management and control system
US5587935A (en) 1991-12-23 1996-12-24 International Business Machines Corporation Integrated software development system including group decision support subsystem, application development subsystem, and bridge subsystem therebetween
US5630069A (en) * 1993-01-15 1997-05-13 Action Technologies, Inc. Method and apparatus for creating workflow maps of business processes
AU6133594A (en) * 1993-02-08 1994-08-29 Action Technologies, Inc. Method and apparatus for managing business processes
US6058413A (en) * 1993-02-25 2000-05-02 Action Technologies, Inc. Method and apparatus for utilizing a standard transaction format to provide application platform and a medium independent representation and transfer of data for the management of business process and their workflows
CA2122182A1 (en) 1993-05-20 1994-11-21 Rene Leblanc Method for rapid prototyping of programming problems
CA2128387C (en) 1993-08-23 1999-12-28 Daniel F. Hurley Method and apparatus for configuring computer programs from available subprograms
US5742848A (en) * 1993-11-16 1998-04-21 Microsoft Corp. System for passing messages between source object and target object utilizing generic code in source object to invoke any member function of target object by executing the same instructions
US5890130A (en) * 1994-02-04 1999-03-30 International Business Machines Corporation Workflow modelling system
US5768506A (en) * 1994-09-30 1998-06-16 Hewlett-Packard Co. Method and apparatus for distributed workflow building blocks of process definition, initialization and execution
JPH08123744A (en) * 1994-10-26 1996-05-17 Hitachi Ltd Work flow system
US5745901A (en) * 1994-11-08 1998-04-28 Kodak Limited Workflow initiated by graphical symbols
JPH08287162A (en) * 1995-02-14 1996-11-01 Toshiba Corp Work flow system
JPH08263481A (en) * 1995-03-22 1996-10-11 Hitachi Ltd Computerized document circulation system
US5774661A (en) * 1995-04-18 1998-06-30 Network Imaging Corporation Rule engine interface for a visual workflow builder
US5999911A (en) * 1995-06-02 1999-12-07 Mentor Graphics Corporation Method and system for managing workflow
US6401081B1 (en) 1995-11-20 2002-06-04 Schlumberger Resource Management Services, Inc. Modular object-based architecture for extensible master station software
JP3120963B2 (en) * 1995-12-14 2000-12-25 株式会社日立製作所 Method for transferring messages and system for transferring messages
US5848393A (en) * 1995-12-15 1998-12-08 Ncr Corporation "What if . . . " function for simulating operations within a task workflow management system
EP0888585A1 (en) 1996-03-19 1999-01-07 Massachusetts Institute Of Technology Computer system and computer implemented process for representing software system descriptions and for generating executable computer programs and computer system configurations from software system descriptions
JPH1063747A (en) * 1996-08-20 1998-03-06 Fuji Xerox Co Ltd Work flow supporting system, and method therefor
JPH10105623A (en) * 1996-09-27 1998-04-24 Hitachi Ltd Hierarchical work flow management method and work flow document circulation method
US5818736A (en) * 1996-10-01 1998-10-06 Honeywell Inc. System and method for simulating signal flow through a logic block pattern of a real time process control system
US6014673A (en) * 1996-12-05 2000-01-11 Hewlett-Packard Company Simultaneous use of database and durable store in work flow and process flow systems
US5940804A (en) * 1996-12-18 1999-08-17 Turley; William N. Computer executable workflow resource management system
JPH10207939A (en) * 1997-01-17 1998-08-07 Nec Corp Work flow system
US5983274A (en) * 1997-05-08 1999-11-09 Microsoft Corporation Creation and use of control information associated with packetized network data by protocol drivers and device drivers
US5987422A (en) * 1997-05-29 1999-11-16 Oracle Corporation Method for executing a procedure that requires input from a role
US6256651B1 (en) * 1997-06-20 2001-07-03 Raja Tuli Time management workflow software
CA2210755C (en) * 1997-07-17 2003-12-23 Ibm Canada Limited - Ibm Canada Limitee Creating proxies for distribution of beans and event objects
US5978836A (en) * 1997-07-28 1999-11-02 Solectron Corporation Workflow systems and methods
US5960404A (en) * 1997-08-28 1999-09-28 International Business Machines Corp. Mechanism for heterogeneous, peer-to-peer, and disconnected workflow operation
US6038538A (en) * 1997-09-15 2000-03-14 International Business Machines Corporation Generating process models from workflow logs
US6356931B2 (en) * 1997-10-06 2002-03-12 Sun Microsystems, Inc. Method and system for remotely browsing objects
US5999910A (en) * 1997-10-06 1999-12-07 Fmr Corp. Processing a workflow item
JP3581779B2 (en) * 1997-11-28 2004-10-27 株式会社日立製作所 Multi-server workflow system
JP3196827B2 (en) 1997-12-04 2001-08-06 日本電気株式会社 Network communication system
US6003011A (en) * 1998-01-07 1999-12-14 Xerox Corporation Workflow management system wherein ad-hoc process instances can be generalized
US6430538B1 (en) * 1998-04-30 2002-08-06 Enterworks Workflow management system, method and medium with personal subflows
US6442563B1 (en) * 1998-04-30 2002-08-27 Enterworks Workflow management system, method, and medium that morphs work items
US6424979B1 (en) * 1998-12-30 2002-07-23 American Management Systems, Inc. System for presenting and managing enterprise architectures
US6754885B1 (en) * 1999-05-17 2004-06-22 Invensys Systems, Inc. Methods and apparatus for controlling object appearance in a process control configuration system
US7089530B1 (en) * 1999-05-17 2006-08-08 Invensys Systems, Inc. Process control configuration system with connection validation and configuration

Patent Citations (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5421015A (en) * 1987-08-21 1995-05-30 Wang Laboratories, Inc. Multitasking system having an application integration mechanism for linking differently typed data objects
US5075847A (en) * 1989-05-26 1991-12-24 Hewlett-Packard Company Method and apparatus for computer program encapsulation
US6336147B1 (en) * 1995-03-22 2002-01-01 Sun Microsystems, Inc. Method and apparatus for managing connections for communication among objects in a distributed object system
US5872973A (en) * 1995-10-26 1999-02-16 Viewsoft, Inc. Method for managing dynamic relations between objects in dynamic object-oriented languages
US6434598B1 (en) * 1996-07-01 2002-08-13 Sun Microsystems, Inc. Object-oriented system, method and article of manufacture for a client-server graphical user interface (#9) framework in an interprise computing framework system
US6253252B1 (en) * 1996-07-11 2001-06-26 Andrew Schofield Method and apparatus for asynchronously calling and implementing objects
US5884078A (en) * 1997-01-31 1999-03-16 Sun Microsystems, Inc. System, method and article of manufacture for creating an object oriented component having multiple bidirectional ports for use in association with a java application or applet
US5999729A (en) * 1997-03-06 1999-12-07 Continuum Software, Inc. System and method for developing computer programs for execution on parallel processing systems
US6564368B1 (en) * 1998-10-01 2003-05-13 Call Center Technology, Inc. System and method for visual application development without programming
US6671742B1 (en) * 1999-06-15 2003-12-30 At&T Corp. Method and apparatus for unifield control and data event exchange in a software system
US6910075B2 (en) * 2001-11-14 2005-06-21 Emc Corporation Dynamic RDF groups

Also Published As

Publication number Publication date
US8225272B2 (en) 2012-07-17
US7150000B1 (en) 2006-12-12
US20070044067A1 (en) 2007-02-22

Similar Documents

Publication Publication Date Title
US8225272B2 (en) System and method for generating distributed information systems
Crnkovic et al. Challenges of component-based development
Cândido et al. SOA in reconfigurable supply chains: A research roadmap
US7343605B2 (en) System and method for communicating between software applications, particularly MES (manufacturing execution system) applications
Merz et al. Using mobile agents to support interorganizational workflow management
WO2005106666A1 (en) A system and method for modeling and dynamically deploying services into a distributed networking architecture
US20050198614A1 (en) Management platform and evironment
Crnkovic et al. Component-based software engineering-new paradigm of software development
Boukhedouma et al. Service based cooperation patterns to support flexible inter-organizational workflows
CN103684904A (en) Tri-networks integration network monitoring system based on IP
Aarsten et al. Patterns for cooperation
Parzyjegla Engineering publish/subscribe systems and event-driven applications
Papazoglou et al. From business processes to cooperative information systems: an information agents perspective
Aguirre et al. MCSARCH: An architecture for the development of manufacturing control systems
Bepperling et al. A framework for development and implementation of web service-based intelligent autonomous mechatronics components
Brugali et al. Architectural models for global automation systems
EP1257088A2 (en) Event publishing service system and method
Abu-Matar et al. Service Variability Meta-Modeling for Service-Oriented Architectures
Hofmann et al. Implementation reuse and inheritance in distributed component systems
Kiv et al. Agent-driven integration architecture for component-based software development
Soni Integration of Java and OPC Technology to Real Time Process Control/SCADA
Feldmann et al. Information systems architecture for collaborative manufacturing in virtual enterprises
Hanneghan et al. The design of an object-oriented repository to support concurrent engineering
Maurino et al. Workflow management in mobile environments
Breunig et al. Extending Service-oriented Architectures in Manufacturing towards Fog and Edge Levels

Legal Events

Date Code Title Description
AS Assignment

Owner name: NASH CONTROLWARE, INC., MINNESOTA

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:FELDMAN, MICHAEL;REEL/FRAME:028386/0060

Effective date: 20001013

Owner name: SAVIGENT SOFTWARE, INC., MINNESOTA

Free format text: CHANGE OF NAME;ASSIGNOR:NASH CONTROLWARE, INC.;REEL/FRAME:028386/0476

Effective date: 20120316

STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION