What is a real life example of CORBA?
Asked Answered
L

3

5

What is an example of a situation where CORBA would be used? Is it just a matter of using an interface language (e.g. Java) to 'talk' to all applications?

Lissa answered 8/1, 2011 at 16:47 Comment(3)
"What is an example of X?" is categorically too broad to be on-topic under Stack Overflow's current rules. A question needs to be about a narrow, specific, practical problem you currently face.Belgian
@GabrielDevillers, you might reconsider revitalizing old questions by adding very questionable tags. Workflows involving CORBA use an IDL, but that doesn't mean it is an IDL in entirety, or that the question is itself an IDL question; moreover, the question itself would be off-topic today, since our scope rules have narrowed in the 12 years since it was asked; bringing it back to the front page may well get it closed.Belgian
@CharlesDuffy thanks for this advice. I agree with what you say. I will be more careful in the future. I will not undo my edit to reduce the noise (but feel free to do it).Alberthaalberti
L
11

CORBA might be used to build a language-independent, O/S-independent distributed system. For example, C++ on Linux developers could build a common distributed system with Java on Windows developers. IDL describes the interfaces that bind the two implementations over a common substrate (CORBA).

CORBA is also useful when building a plain old distributed object system - it has a rich set of services defined and is generally very well thought out. However, these days - depending on the language - many folks have opted for either simpler (e.g., RMI, protocol buffers) or message-based protocols (e.g., HTTP) for building distributed systems, so it's not as common. CORBA suffered from design-by-committee (esp on things like security).

More info:

http://en.wikipedia.org/wiki/Common_Object_Request_Broker_Architecture

Llama answered 8/1, 2011 at 16:54 Comment(0)
S
2

You will see a list of real-life example of CORBA projects from below website. http://www.cs.wustl.edu/~schmidt/TAO-users.html

TAO is one of the most popular C++ CORBA implementation available today. The project is pretty active.

Secondguess answered 11/1, 2011 at 18:29 Comment(0)
T
0

CORBA was intended to be what SOAP, REST, and others are today. Real-life examples of applications of the latter are examples of things attempted with the former.

CORBA technology vendors killed each other through incompatible and bureaucratic implementations. Today, you can safely consider CORBA to be a legacy technology; that is, use it if you have to deal with components that already expose themselves through CORBA. Otherwise, stick to modern RPC/distribution standards like SOAP, or, better yet, REST/JSON.

Taillight answered 8/1, 2011 at 17:2 Comment(8)
CORBA doesn't fit the same use case as REST/JSON. CORBA is a binary protocol and can be used where speed matters.Menstrual
@Brian Neal. Note that I didn't mention "efficiency" in my answer. Efficiency is a non-issue when things don't work. I was there when CORBA was being pushed as the one solution to interoperability, I used it, and I wrote articles about it. But you don't have to take my word for what happened with the technology. Wikipedia has it all well documented: en.wikipedia.org/wiki/Corba#Problems_and_criticism.Taillight
I'll add that the "binary" thing was never part of the specification. Participants in a CORBA environment could store objects any way they chose, and protocolos were free to serialize or convert to 7-bit-ASCII the messages. They keyword was interoperability, not efficiency, and the former was never acheived. You either bought everything from a single vendor, and limited your software to their offer, or forgot about it all.Taillight
I use CORBA every day and I am paid for it. I am well aware of the history and many problems that CORBA has. For what we use it for, we could NEVER substitute it with tech like SOAP, XML, or REST. It's apples and oranges. CORBA uses a binary protocol to serialize and deserialize parameters across the wire, as opposed to XML, JSON, etc. You could not implement an embedded real-time system with high bandwidth, low latency requirements with SOAP or JSON.Menstrual
The last thing I want to come across is a CORBA cheerleader, but your answer is full of FUD and common misconceptions.Menstrual
In addition, we are using a system that uses CORBA from several ORB vendors and there are no interoperability problems. Those were ironed out years ago. Don't believe everything you read on Wikipedia.Menstrual
BTW, binary was part of the standard, it's called GIOP.Menstrual
It is not fair to withhold that alternatives like Erlang were designed, developed, and successfully deployed because CORBA failed to deliver. That is history, not opinion. How does a CORBA broker fit in when efficiency and embedded are part of the requirements, I don't know, I don't understand. If CORBA vendors have overcome the many limitations and pitfalls of the past, then good! The FAQ says that discussions about individual experiences are not welcome here, so I'll leave it at that. I won't delete my post because I don't know what would happen with the comments if I did.Taillight

© 2022 - 2024 — McMap. All rights reserved.