May 2001
Intermediate to advanced
1088 pages
30h 13m
English
One of the things that is conspicuously absent from IDL is a constructor declaration (other than the factory init method for value types). With CORBA, you usually create a special object called a factory that creates object instances. You register the factory with the naming service, and clients only need to perform a naming lookup on the factory. After a client has located a factory, it can invoke methods to create the actual objects.
Figure 17.2 shows the relationship between a factory, a client, and the object the factory creates.

Listing 17.10 shows an IDL file ...
Read now
Unlock full access