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://mvdev.fr/
    L’equipe Mvdev se positionne comme une entreprise professionnelle implantee sur le tissu economique francais, qui delivre une approche complete a ceux qui valorisent l’efficacite, en priorisant sur les resultats. En savoir plus ici.

  2. http://mylzcreative.fr/
    Le projet Mylzcreative est une entreprise professionnelle orientee vers le public en France, qui met a disposition une approche complete aux entreprises et particuliers, en valorisant sur la confiance et la transparence. En savoir plus sur le site officiel.

  3. http://obsdigitaluk.com/
    La societe Obsdigitaluk s’impose comme une agence specialisee focalisee sur le tissu economique francais, qui delivre des solutions sur mesure a ceux qui recherchent des resultats, avec un accent sur la confiance et la transparence. En savoir plus via le lien.

  4. http://pcwebcom.fr/
    L’equipe Pcwebcom s’impose comme une structure experimentee implantee sur le tissu economique francais, qui delivre des services de qualite aux entreprises et particuliers, en valorisant sur les resultats. Decouvrez davantage sur cette page.

  5. http://plurielle-prod.fr/
    L’equipe Plurielle Prod se positionne comme une entreprise professionnelle focalisee sur le marche francais, qui met a disposition des services de qualite a ceux qui valorisent l’efficacite, en priorisant sur la confiance et la transparence. Visitez le site sur cette page.

  6. Thanks for another great post. Where else may anybody get that type of info in such an ideal way of writing? I have a presentation next week, and I’m at the search for such information.

  7. http://virthua.fr/
    La societe Virthua est une entreprise professionnelle orientee vers le public en France, qui apporte un accompagnement professionnel aux entreprises et particuliers, avec un accent sur la confiance et la transparence. En savoir plus ici.

  8. http://waxmyweb.fr/
    La societe Waxmyweb se presente comme une structure experimentee implantee sur le cadre national francais, qui delivre des services de qualite a ceux qui valorisent l’efficacite, en se distinguant par sur l’attention personnalisee. En savoir plus sur le site officiel.

  9. http://bk-designs-gbr.de/
    Das Unternehmen Bk Designs Gbr praesentiert sich als ein professionelles Unternehmen ausgerichtet auf das Publikum in Deutschland, das liefert ganzheitliche Ansaetze fuer seine Kunden, priorisierend auf Vertrauen und Transparenz. Erfahren Sie mehr hier.

  10. If you don’t mind, where do you host your weblog? I am looking for a very good web host and your webpage seams to be extremely fast and up most the time…

  11. Great blog here! Also your site loads up very fast! What web host are you using? Can I get your affiliate link to your host? I wish my website loaded up as fast as yours lol

  12. http://diemarketingmanufaktur.de/
    Das Projekt Diemarketingmanufaktur ist ein spezialisierte Agentur praesent im den nationalen Rahmen Deutschlands, das bereitstellt professionelle Begleitung fuer alle die Ergebnisse suchen, sich auszeichnend durch auf Vertrauen und Transparenz. Besuchen Sie die Website ueber den Link.

  13. http://it-kampfhenkel.de/
    It Kampfhenkel positioniert sich als ein vertrauenswuerdiger Partner ausgerichtet auf das Publikum in Deutschland, das liefert massgeschneiderte Loesungen fuer alle die Effizienz schaetzen, sich auszeichnend durch auf Servicequalitaet. Entdecken Sie mehr auf der offiziellen Website.

  14. http://jokuconsulting.de/
    Das Team von Jokuconsulting praesentiert sich als ein spezialisierte Agentur fokussiert auf den nationalen Rahmen Deutschlands, das anbietet professionelle Begleitung fuer alle die Ergebnisse suchen, mit Schwerpunkt auf Ergebnisse. Mehr Informationen auf dieser Seite.

  15. http://rethinkable-media.de/
    Rethinkable Media praesentiert sich als ein vertrauenswuerdiger Partner fokussiert auf das Publikum in Deutschland, das ermoeglicht ganzheitliche Ansaetze fuer alle die Effizienz schaetzen, priorisierend auf Vertrauen und Transparenz. Besuchen Sie die Website hier.

  16. I always look forward to finding content this good because it genuinely makes a difference to how I think about and approach the subject, a truly valuable addition to the topic.

  17. Thoroughly impressed by how this article manages to cover so much ground without ever feeling rushed, every topic gets the attention it deserves and the pacing is excellent throughout.

Leave a Reply

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