Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is CORBA a language?

As i know CORBA is used to maintain interoperability in distributed systems by acting in middle.

What i want to know is, is CORBA a language which has its own syntax of coding or do we code in CORBA using other languages like C#, Java etc.

I went through this question but didn't find a direct answer.

like image 376
Nipuna Avatar asked Jul 17 '11 09:07

Nipuna


2 Answers

CORBA is not a language, it's a request broker architecture.

Basically, it defines and provides a common calling protocol so code written in different languages can call one another's functions.

like image 80
Frédéric Hamidi Avatar answered Oct 29 '22 00:10

Frédéric Hamidi


The latter; you create CORBA implementations in a programming language such as C# or Java.

like image 41
Scott C Wilson Avatar answered Oct 29 '22 00:10

Scott C Wilson