A distributed object is an object that can be accessed remotely. This means that a distributed object can be used like a regular object, but from anywhere on the network. An object is typically considered to encapsulate data and behavior. The location of the distributed object is not critical to the user of the object. A distributed object might provide its user with a set of related capabilities. The application that provides a set of capabilities is often referred to as a service. A Business Object might be a local object or a distributed object. The term business object refers to an object that performs a set of tasks associated with a particular business process.
[ Top | Bottom | Previous section | Next section ]
No.
A CORBA object is an object that obeys certain rules and which can be accessed via a particular protocol. A CORBA object is frequently also a distributed object, but it doesn’t have to be.
A distributed object is not necessarily a CORBA object. A distributed object might be a C++ object that can be accessed via a socket, RPC, or telephony. In order for a distributed object to be a CORBA object, it must be declared in IDL. The object can be implemented in a variety of programming languages.
[ Top | Bottom | Previous section | Next section ]
[Recently did some wordsmithing (12/1998). Click here to go to the next FAQ in the “chain” of recent changes]
For lots of reasons:
[ Top | Bottom | Previous section | Next section ]
[Recently did some wordsmithing (12/1998). Click here to go to the next FAQ in the “chain” of recent changes]
Typically a company will start by modeling their business processes. Next, the company will determine which business processes should be implemented as local objects and which should be implemented as distributed objects. Usually, the company will leverage a tool-kit that simplifies the distribution of those objects. There are many issues associated with simplifying distribution of objects. The tool-kit might also enhance the distribution with a robust set of communication features. A company might select a particular CORBA implementation, and build their distributed objects on top of the third party package. The CORBA vendor simplifies distribution by implementing all low-level network development. An IDL compiler will process interface definition files into client and server side base classes. These base classes use low level network APIs (such as TCP/IP) to communicate. The vendor will most likely provide daemon processes that facilitate communication, the spawning of processes, the spawning of objects, and the storage of IDL used by a running system. A number of other utilities might also be provided. These could include debuggers, interface browsers or communication monitors.
[ Top | Bottom | Previous section | Next section ]
Nope.
Not every business object should be distributed. Distribution implies network overhead and management overhead. Distribution of all business objects can lead to severe performance problems. Distribution can provide many benefits, but should only be used where specific goals are achieved. You must first ask why you need to do distributed objects.
[ Top | Bottom | Previous section | Next section ]