CORBA naming service
A CORBA naming service holds CORBA object references.
A CORBA server puts references to CORBA objects inside a naming service so that clients can query the naming service and obtain the object reference, then call operations on the CORBA objects. Typically, a client queries the naming service once, then caches the object reference.
A CORBARequest node is a CORBA client; therefore, when it is deployed, the node contacts a naming service to obtain an object reference. If the object reference is not in the naming service at deployment time, or the naming service that is configured on the node is unavailable, the CORBARequest node issues a warning, and attempts to contact the naming service to get the object reference when it receives a message. If an object reference cannot be acquired from the naming service when the node receives a message, an error is issued. You can specify the location of an object reference by using the properties on the CORBARequest node. For more information, see CORBARequest node.
Identifying an object reference in a naming service
Each object in a naming service has a unique name. You must use this name when you configure the Object reference name property on the CORBARequest node.
Naming services are typically arranged in a hierarchy so that names can be given context or scope. The initial naming context is at the top of the hierarchy. Object references can be added to the initial naming context, and additional contexts can exist below it. The number of levels in the hierarchy is unlimited.
- An object called Factory is directly attached to the initial naming context.
- Three contexts, with kind region, are also attached to the initial naming context.
- These three contexts each have one or more object references attached to them.
- The Europe context has an England context attached to it, of kind country, which has an object attached to it (Calculator).
Object | Object reference name |
---|---|
Factory | Factory |
Bank | Asia.region/Bank.object |
Asia.region/Mail.object | |
StockExchange | America.region/StrockExchange.object |
Market | Europe.region/Market.object |
Calculator | Europe.region/England.country/Calculator |