Skip to content

An example of use of CORBA

Hello

CORBA (Common Object Request Broker Architecture) is a standart defined by OMG (Object Management Group), this let distributed object from different languages and OS to communicate. It also provides total transparency in the communication. The IDL (Interface Definition Language) is the tecnology used to describe the interfaces. IDL has your own data types, that are mapped to the data types in other languages. There is an IDL compiler, it generates the codes that do the communication.

But how it works? We have some definitions in a .idl file, in this case Bank-idl (remember to change the filename).

Acessing the files, you will see a lot of definitions like:

Module definition:

module banco {

Definition of data type valor as double

typedef double valor;

Definition of the transacao struct

struct transacao {
unsigned long data; // Formato: ddmmyyyy
string<12> descricao;
valor quantia;
};

Definition of some methos, vars and exceptions

interface auto_atendimento {
readonly attribute string boas_vindas;
valor saldo ( in conta c )
raises ( conta_inval );
void extrato ( in conta c,
out transacoes t, out valor saldo )
raises ( conta_inval );
void transferencia ( in conta origem,
in conta destino, in valor v )
raises ( conta_inval, saldo_insuf );
void investimento ( in conta c,
in aplicacao apl, in valor v )
raises ( conta_inval, saldo_insuf );
};

With this file you can generate a lot of different interfaces compiled to different languages. To generate the interfaces in Java use:

idlj -fall bank.idl

It will generate many files inside a banco folder, with the .java files. Now you just have to code what each method will do.

Example of implementation of a bank service and a client in Java using CORBA and IDL

Matheus

PS: This is just a introduction to CORBA. It uses a lot of other definitions as Object Management Architecture and others

References:
My Professor Frank page.
http://en.wikipedia.org/wiki/Common_Object_Request_Broker_Architecture

Published injava

2,416 Comments

  1. Williamrhync Williamrhync

    С пациентом работают профильные специалисты, которые оценивают состояние и подбирают безопасный план помощи.
    Углубиться в тему – нарколог на дом

  2. Selam millet Siteler sürekli kapanıyor, yeni adres arıyorum Paramı geri alamadım Ama sonunda bu siteyi keşfettim — 1xbet güncel adres tıkla Çekim işlemleri dakikalar içinde Kısacası, kendiniz kontrol edin — 1xbet yeni giriş 1xbet yeni giriş Tek adres 1xbet güncel giriş Bahis yapan herkese gönder

  3. Pretty section of content. I just stumbled upon your website and in accession capital to assert that I acquire actually enjoyed account your blog posts. Any way I will be subscribing to your augment and even I achievement you access consistently rapidly.

  4. Hello, i think that i saw you visited my web site so i came to “return the favor”.I’m attempting to find things to improve my site!I suppose its ok to use some of your ideas!!

  5. I enjoy what you guys are up too. Such clever work and reporting! Keep up the terrific works guys I’ve incorporated you guys to my personal blogroll.

  6. Selam millet Güncel giriş adresini bulmak her seferinde çok zor oluyor Paramı geri alamadım, sinirlerim bozuldu Sonunda bu siteyi keşfettim — 1xbet giriş yap hemen Canlı destek gece gündüz aktif Neyse, kaybetmeyin diye tıkla — 1xbet türkiye 1xbet türkiye Tek adres 1xbet güncel giriş Bahis yapan herkese gönder

  7. DerekvinuE DerekvinuE

    Снятие запоя – это не только прекращение приема спиртных напитков, но и целый комплекс мероприятий, включающий очищение и восстановление организма, а также нормализацию общего состояния больного. В современных условиях наркологическая клиника может предложить вывод из запоя на дому, лечение запоя в стационаре, капельницу, детоксикацию, медикаментозный курс, психологическую помощь, кодирование, реабилитацию и дальнейшее сопровождение семьи. Такой подход позволяет не просто вывести человека из тяжелого периода, а определить причины зависимости, подобрать индивидуально эффективное лечение и снизить вероятность повторного срыва.
    Исследовать вопрос подробнее – вывод из запоя клиника анапа

Leave a Reply

Your email address will not be published. Required fields are marked *