[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The Portable Object Adapter (POA) superceeds the Basic Object Adapter (BOA) as the primary way of making implementation objects available to the ORB for servicing requests. All object adapters are concerned with the mechanisms to create CORBA objects and associate the CORBA objects with programming language objects that can actually do the work. The POA provides an expanded set of mechanisms for doing this.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA was added to the CORBA specification for a number of reasons:
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
No. No object adapter or server-side concept affects clients. CORBA-compliant clients that used BOA-based servers should be able to use POA-based servers.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Yes. Transitioning from a BOA-based server to a POA-based server needs to be done with some forethought. It is not necessarily a difficult task, but should be done carefully. The POA is policy based with lots of policy choices. The task is to determine the set of policy decisions that give you the functionality you want.
Since the POA superceeds most of the BOA functionality, if you want to simply migrate a BOA-based server to a POA-based server without changing behavior, then this can be done rather easily. There are some API changes. See POA Policies. Chances are, though, if you are using the POA, you are going to want to take advantage of some of its benefits.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA is very consistent in the treatment of local and remote objects. Specifically, all CORBA calls on a CORBA object go through the POA, even if the target object is local (in the same address space). This allows the POA to uniformly apply the POA Policies.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA distinguishes between the CORBA object reference (IOR) and the implementation object that does the work. This implementation object is called a servant. A BOA-based approach has the IOR and servant existing at the same time. A POA-based approach can support this, but can also support IORs existing without being associated with servants, and also servants existing without being associated with IORs.
Obviously, the association between an IOR and a servant has to be made at some point, to make the servant a useable CORBA object. But this association can be done on-demand. Consider the following example scenarios to motivate the advantages of on-demand association:
Moreover, the POA allows a single servant to simultaneously support several IORs.
All of the above significantly contribute to scalable applications.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
This is where the Object ID and and POA Active Object Map come in. So, for a given POA, the Object ID identifies a specific CORBA object, which is used in the Active Object Map to identify the servant.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Yes. Actually, there can be more than one ORB per process, but this is another FAQ ;-)
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Each POA has a name.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
This is up to the application developer, but a POA hierarchy is supported. Each POA has a parent POA. There is an implicit Root POA.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
This is better answered by describing what the semantics of the POA hierarchy are not.
In most cases, each servant is associated with at most one POA. The POA “owns” the servant and there are deletion responsibilities the POA will take. Deleting a POA will cause its servants to be deleted. Hence, the semantics of the POA hierarchy are only a containment hierarchy for POA deletion.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA Manager is really a different beast all together. The POA Manager groups one or more POAs and provides common system resources, such as a network connection, to its POAs.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA policies are used to configure the POA for a particular application design or scalability optimization. For example, if you have lots of a fine-grain objects, you may want one kind of optimization, whereas if you have lots of long-duration operations, you may want another kind of optimization.
The list of POA policies includes:
Note, there are some cases where the policies are inter-related in most practical situations. For example, a PERSISTENT Lifespan Policy probably implies a USER_ID ID Assignment Policy. Also, the use of the USE_ACTIVE_OBJECT_MAP_ONLY requires the use of RETAIN, and the use of IMPLICIT_ACTIVATION requires the use of SYSTEM_ID and RETAIN.
Since the POA and its policies are defined in IDL, this list may be extended, or features within a particular policy may be expanded.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The Servant Manager is application code that essentially replaces the functionality of the POA’s Active Object Map (AOM). A servant manager is needed for sophisticated schemes to map Object IDs to servants.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
The POA’s name is part of the IOR. Also, of course, the Object ID is in the IOR. So once the request gets delivered to the right machine (part of the request’s IOR), and to the right port (part of the request’s IOR), the POA Manager listening on that port looks at the object key (part of the request’s IOR). The object key contains the POA name and the Object ID. The POA Manager uses the object key to deliver the request to the right POA, and the POA uses the object key to determine the Object ID. Depending on the POA’s policies, it directly or indirectly uses that Object ID to deliver the request to the right servant.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
Very well, indeed. The POA is the unit of location and activation. This means the POA is the unit of relocation. This is powerful. Since a POA can one object, a few objects, or a lot of objects, by design, then objects can be relocated individually are in groups.
A great way to think of the POA is as a named, logical endpoint.
[ Top | Bottom | Previous section | Next section ]
[Recently created (10/1999). Click here to go to the next FAQ in the “chain” of recent changes]
There is no specific answer. The migration impacts will depend on the system complexity. In particular, many large systems developed with the BOA needed to do POA-like things any way to scale.
There will be some emerging case studies. It is likely that POA migration is one of those things that is not overly difficult, but should not be done without a thought. An important thing to understand is that the migration can be an evolutionary thing as the use of the POA does not affect clients, and mixed POA and BOA systems interoperate at the network (IIOP) level.
[ Top | Bottom | Previous section | Next section ]