Object request broker

In today's article we will delve into the exciting world of Object request broker. We will explore its origins, evolution and its various applications today. Object request broker has been a topic of interest for a long time and has generated debates, research and discoveries that have impacted different areas of society. Throughout this article, we will analyze how Object request broker has influenced culture, science, technology, and people's daily lives. Additionally, we will examine current trends related to Object request broker and how these may affect the future of our society. From its impact on history to its relevance in the contemporary world, Object request broker continues to be a topic of great interest and relevance, making it crucial to understand its importance and the role it plays in our lives.

In distributed computing, an object request broker (ORB) is a concept of a middleware, which allows program calls to be made from one computer to another via a computer network, providing location transparency through remote procedure calls. ORBs promote interoperability of distributed object systems, enabling such systems to be built by piecing together objects from different vendors, while different parts communicate with each other via the ORB. Common Object Request Broker Architecture standardizes the way ORB may be implemented.

Overview

ORBs assumed to handle the transformation of in-process data structures to and from the raw byte sequence, which is transmitted over the network. This is called marshalling or serialization. In addition to marshalling data, ORBs often expose many more features, such as distributed transactions, directory services or real-time scheduling. Some ORBs, such as CORBA-compliant systems, use an interface description language to describe the data that is to be transmitted on remote calls.[1][2]

In object-oriented languages (e.g. Java), an ORB actually provides a framework which enables remote objects to be used over the network, in the same way as if they were local and part of the same process. On the client side, so-called stub objects are created and invoked, serving as the only part visible and used inside the client application. After the stub's methods are invoked, the client-side ORB performs the marshalling of invocation data, and forwards the request to the server-side ORB. On the server side, ORB locates the targeted object, executes the requested operation, and returns the results. Having the results available, the client's ORB performs the demarshalling and passes the results back into the invoked stub, making them available to the client application. The whole process is transparent, resulting in remote objects appearing as if they were local.[1]

Implementations

See also

References

  1. ^ a b "Object Request Brokers". IBM. 2013-11-05. Retrieved 2013-12-22.
  2. ^ "Overview of CORBA". wustl.edu. 2006-09-28. Retrieved 2013-12-22.