User Tools

Site Tools


tanszek:oktatas:iss_t:object_request_broker

This is an old revision of the document!


CORBA – Common Object Request Broker Architecture

CORBA (Common Object Request Broker Architecture) is a distributed object standard defined by the Object Management Group (OMG) in the early 1990s. Its goal was to enable software components written in different programming languages and running on different platforms to communicate seamlessly.

CORBA introduced the concept of an Object Request Broker (ORB), which acts as middleware between clients and distributed objects. In essence, CORBA extended the object-oriented programming paradigm into distributed systems by allowing so-called “distant objects” (remote objects) to interact as if they were local.

This was a major step in software integration before REST APIs and microservices became dominant.

Object Request Broker (ORB)

The ORB is the central component of CORBA. It is responsible for:

  • locating remote objects,
  • forwarding client requests,
  • handling communication between distributed components,
  • managing object references.

From the programmer’s perspective, calling a remote object method in CORBA looks very similar to calling a local method. The ORB hides the complexity of network communication.

Conceptually:

Client → ORB → Remote Object Remote Object → ORB → Client

The ORB handles all low-level details such as transport protocols and data encoding.

tanszek/oktatas/iss_t/object_request_broker.1772387034.txt.gz · Last modified: 2026/03/01 17:43 by knehez