tanszek:oktatas:iss_t:object_request_broker
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tanszek:oktatas:iss_t:object_request_broker [2026/03/01 17:53] – [Marshalling and Unmarshalling] knehez | tanszek:oktatas:iss_t:object_request_broker [2026/03/01 17:58] (current) – [Object Request Broker (ORB)] knehez | ||
|---|---|---|---|
| Line 20: | Line 20: | ||
| Conceptually: | Conceptually: | ||
| - | Client -> ORB -> Remote Object | + | < |
| - | + | sequenceDiagram | |
| - | Remote Object | + | Client->>ORB: Method call |
| + | ORB->> | ||
| + | RemoteObject-->>ORB: Return result | ||
| + | ORB-->>Client: Return response | ||
| + | </ | ||
| The ORB handles all low-level details such as transport protocols and data encoding. | The ORB handles all low-level details such as transport protocols and data encoding. | ||
| Line 65: | Line 69: | ||
| IDL was one of the early solutions to cross-language service integration. | IDL was one of the early solutions to cross-language service integration. | ||
| + | |||
| + | CORBA IDL supports interface inheritance, | ||
| + | This enables the reuse of method definitions and supports polymorphism in distributed systems. | ||
| + | |||
| + | Below is an example from a simplified employee management system. | ||
| + | |||
| + | < | ||
| + | module Company { | ||
| + | |||
| + | interface Person { | ||
| + | | ||
| + | long getId(); | ||
| + | }; | ||
| + | |||
| + | interface Employee : Person { | ||
| + | | ||
| + | void setSalary(in double newSalary); | ||
| + | }; | ||
| + | |||
| + | interface Manager : Employee { | ||
| + | void addTeamMember(in Person p); | ||
| + | }; | ||
| + | |||
| + | }; | ||
| + | </ | ||
| + | |||
| + | |||
| ---- | ---- | ||
| ==== Marshalling and Unmarshalling ==== | ==== Marshalling and Unmarshalling ==== | ||
| Line 101: | Line 132: | ||
| Services were browsable in a uniform manner, which was advanced for its time. | Services were browsable in a uniform manner, which was advanced for its time. | ||
| + | ---- | ||
| ==== Known Implementations ==== | ==== Known Implementations ==== | ||
| Line 121: | Line 153: | ||
| * legacy enterprise infrastructures. | * legacy enterprise infrastructures. | ||
| + | ---- | ||
| ==== Why CORBA Declined ==== | ==== Why CORBA Declined ==== | ||
tanszek/oktatas/iss_t/object_request_broker.1772387602.txt.gz · Last modified: 2026/03/01 17:53 by knehez
