vote up 3 vote down star
2

Anyone know of a good guide to CORBA? I've never used it and I'm going to have to write a Java (Not my native language I'm a .Net Developer) proof of concept app that uses CORBA.

flag

66% accept rate
Wow...CORBA....that brings back memories! – Kev Oct 1 '08 at 10:41
CORBA is not popular for very good reasons; is CORBA a requirement, would JMS not work instead? – Steven A. Lowe Dec 11 '08 at 17:12

7 Answers

vote up 7 vote down check

I did a fair amount of actual CORBA development in a previous position, ranging from just using it for distributed objects up to and including design and implementation of a simple custom transport.

The two books I found most useful:

Pure CORBA by Fintan Bolton

Advanced CORBA Programming with C++ by Michi Henning and Steve Vinoski

Pure CORBA is probably the easier of the two to actually learn CORBA from. In general, you will find that CORBA implementations inter-operate very well at run time but that the source generated by the IDL compilers differs. It's probably a good thing to pick one implementation and learn the fundamentals on that. Once you've selected an implementation, check out the vendor documentation - it can also be surprisingly useful.

link|flag
1  
The Bibles of CORBA. You'll might want to familiarize yourself with ACE/TAO with using C++ cse.wustl.edu/~schmidt/TAO.html . – Los Aug 31 at 2:42
vote up 4 vote down

Have a look here.


CORBA is not an easy topic. In fact, it often takes considerable effort and expertise to truly master CORBA development issues. Fortunately, there are a great number of books to help us learn the basics, master the details or get an in-depth understanding of this Common Object Request Broker Architecture.

To start with the basics; if you've got no prior understanding of CORBA whatsoever, and you want to learn it from the ground up, there are two books you can read. Both CORBA for Dummies and Teach Yourself CORBA in 14 Days are ideal to start your exploration of CORBA from a C++ or Java background. And make no mistakes: even if you know where to click inside Delphi to produce a CORBA Client or Server, that doesn't necessarily mean you know CORBA (you only know the steps that are provided to you by Delphi). A big number of the current Delphi programmers will fit into that category, and for them one of these two books might help to understand what's going on behind the scenes of CORBA.

alt text

CORBA for Dummies is a small, easy to read, fun, yet very helpful book that uses C++ and Java to illustrate development of both small and larger CORBA-based applications. The authors clearly know what they're writing about, and they kept the book limited to just what you need to get started with CORBA. You'll get hands-on experience from the start building clients and servers, in both C++ and Java. The book also covers CORBA 3. The book includes a CD-ROM with a evaluation copies of Iona's Orbix for C++ and Orbix Web Pro for Java, as well as Inprise's VisiBroker for C++ and VisiBroker for Java (of course, if you have the Client/Server or Enterprise editions of Delphi, C++Builder or JBuilder, then you have the full version of the VisiBroker already).

alt text

After the basics, you get the more advanced books on CORBA. A good follow-up book (and in my view the CORBA-Bible for Java developers) is Client/Server Programming with Java and CORBA. Using Java and the VisiBroker for Java, this book is simply the single best CORBA resource available that I've seen so far. Starting with the basics, the book discusses topics like 2- or 3-tier database query systems with JDBC (pros and cons) and ends with a fully implemented client/server transaction-handling system. You have to have a little sense of humour regarding the "intergallactic web theme" (the little green men on the cover).

alt text

Another good CORBA book is CORBA Programming Unleashed, which covers both Java and C++ again.

alt text

link|flag
vote up 4 vote down

Website: Java and CORBA

Website: Short Guide to CORBA

Website: Java & corba

Here is a jav & corba sample: java_corba(PDF)

link|flag
vote up 2 vote down

You can use the SUN CORBA tutorial on http://java.sun.com/developer/onlineTraining/corba/corba.html. It's based on the Java ORB implementation, which has a lot of shortcomings, but is usable. It gives a good overview of the whole technology too. If you just want to dive into the coding, try some of the tutorials on the web. They can be fairly specific to the ORB you're using though.

Until you're sure of yourself, I'd recommend using the plain Java ORB. It's about the most basic one available, so any concepts you pick up using this ORB will carry to other ORBs. I'd avoid it for anything other than test/toy apps though.

You could also try logging onto a community website (or here!) with any specific questions you have. Try http://www.orbzone.org/, it's run by Iona, but they try to be impartial.

link|flag
vote up 1 vote down

Hi, my 2 cents comment.

Before doing any programming stuff, I suggest to digg out some overview info about CORBA so that you are clear about the overall architecture design. I found out that this article is quite a pretty simple and short article to know what CORBA is about.

Hope this help!!

link|flag
vote up 0 vote down

If you are the kind of person who likes to read specs, the OMG is the place to go for CORBA information.

link|flag
vote up 0 vote down

Unfortunaletly there is lot's of bad literature about CORBA out there.

The best C++ CORBA book in my opinion is Advanced CORBA Programming with C++ from Michi Henning and Steve Vinoski ISBN 0-201-37927-9

For Java (contains also C++) I used Pure CORBA from Fintan Bolton ISBN 0-672-31812-1

This book has the advantage that one can to compare the C++ and Java code for certain CORBA topics.

For specific answers about language mappings it is also good to have the OMG standard ready. However that standard is not suitable to learn CORBA at all. It's a pure reference.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.