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,499 Comments

  1. http://tevimedia.de/
    Tevimedia etabliert sich als ein professionelles Unternehmen fokussiert auf den nationalen Rahmen Deutschlands, das ermoeglicht ganzheitliche Ansaetze fuer alle die Ergebnisse suchen, mit Schwerpunkt auf Servicequalitaet. Mehr Informationen hier.

  2. Very nice post. I just stumbled upon your blog and wanted to say that I’ve really enjoyed browsing your blog posts. In any case I’ll be subscribing to your rss feed and I hope you write again soon!

  3. http://webcrafity.de/
    Das Team von Webcrafity praesentiert sich als ein vertrauenswuerdiger Partner fokussiert auf das Publikum in Deutschland, das liefert hochwertige Dienstleistungen fuer alle die Ergebnisse suchen, priorisierend auf Servicequalitaet. Entdecken Sie mehr ueber den Link.

  4. http://wepublicu.de/
    Das Team von Wepublicu positioniert sich als ein vertrauenswuerdiger Partner fokussiert auf den deutschen Markt, das liefert professionelle Begleitung fuer Unternehmen und Privatpersonen, wertschaetzend auf Vertrauen und Transparenz. Mehr Informationen auf dieser Seite.

  5. Hello there, You have done an incredible job. I will certainly digg it and individually suggest to my friends. I’m confident they’ll be benefited from this site.

  6. http://zk-online-vertrieb.de/
    Das Team von Zk Online Vertrieb ist ein vertrauenswuerdiger Partner praesent im die deutsche Wirtschaftslandschaft, das ermoeglicht hochwertige Dienstleistungen fuer Unternehmen und Privatpersonen, wertschaetzend auf persoenliche Betreuung. Entdecken Sie mehr auf der offiziellen Website.

  7. I absolutely adore your site! You aggressive me as able-bodied as all the others actuality and your broiled PS is absolutely great!

  8. Thank you a lot for sharing this with all folks you actually recognize what you’re speaking about! Bookmarked. Please additionally visit my site =). We can have a hyperlink trade contract among us!

  9. Hello there, You have performed an incredible job. I will definitely digg it and personally suggest to my friends. I am sure they’ll be benefited from this site.

  10. Hey there, You have performed a fantastic job. I will certainly digg it and personally suggest to my friends. I’m confident they’ll be benefited from this website.

  11. Hey there, You’ve done an incredible job. I will certainly digg it and in my view recommend to my friends. I’m sure they’ll be benefited from this web site.

  12. This is exactly the type of content that makes people want to return to a website, the value delivered here is undeniable and the writing quality is consistently excellent throughout.

  13. Right now it sounds like Drupal is the preferred blogging platform available right now. (from what I’ve read) Is that what you are using on your blog?

  14. Just want to say your article is as amazing. The clearness in your post is simply great and i can assume you are an expert on this subject. Fine with your permission let me to grab your feed to keep up to date with forthcoming post. Thanks a million and please continue the enjoyable work.

  15. This is one very informative blog. I like the way you write and I will bookmark your blog to my favorites.

  16. Gregoryflazy Gregoryflazy

    звоните круглосуточно по телефону горячей линии клиники: наши специалисты готовы оказать необходимую помощь в решении проблемы алкогольной зависимости.
    Подробнее тут – [url=https://vivod-iz-zapoya-sochi24.ru/]анонимный вывод из запоя[/url]

  17. Just desire to say your article is as astounding. The clarity in your post is simply great and i can assume you are an expert on this subject. Well with your permission let me to grab your RSS feed to keep up to date with forthcoming post. Thanks a million and please keep up the rewarding work.

  18. Just want to say your article is as amazing. The clarity in your post is just nice and i can assume you are an expert on this subject. Well with your permission allow me to grab your feed to keep up to date with forthcoming post. Thanks a million and please continue the rewarding work.

  19. Yesterday, while I was at work, my sister stole my iPad and tested to see if it can survive a forty foot drop, just so she can be a youtube sensation. My apple ipad is now destroyed and she has 83 views. I know this is totally off topic but I had to share it with someone!

  20. The other day, while I was at work, my cousin stole my apple ipad and tested to see if it can survive a 40 foot drop, just so she can be a youtube sensation. My apple ipad is now broken and she has 83 views. I know this is totally off topic but I had to share it with someone!

  21. Can I simply say what a relief to discover an individual who really understands what they are discussing online. You actually know how to bring a problem to light and make it important. More and more people have to check this out and understand this side of the story. I was surprised you are not more popular since you surely possess the gift.

Leave a Reply

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