Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Object request broker
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== 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 (computer science)|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.<ref name="ibm-orb">{{cite web | url = http://pic.dhe.ibm.com/infocenter/wasinfo/v8r5/index.jsp?topic=%2Fcom.ibm.websphere.express.doc%2Fae%2Ftorb_ep2.html | title = Object Request Brokers | date = 2013-11-05 | access-date = 2013-12-22 | publisher = [[IBM]] }}</ref><ref>{{cite web | url = http://www.cs.wustl.edu/~schmidt/corba-overview.html | title = Overview of CORBA | date = 2006-09-28 | access-date = 2013-12-22 | publisher = wustl.edu }}</ref> In [[object-oriented language]]s (e.g. [[Java_(programming_language)|Java]]), an ORB actually provides a [[Software framework|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 (computing)|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.<ref name="ibm-orb" />
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)