- We start with one definition of our widget interface.
interface Widgets {
double getStrenth();
void tickle(int times);
String getWisdom();
}
- From this code, we run a program that generates both a stub
and a skeleton.
- The skeleton is placed in the object server, which stands
ready to serve and service copies.
- The stub is placed in the name service and, somehow, finds
its way to the client.
- In CORBA the programs can be written in different
languages and platforms.