diff options
-rw-r--r-- | TAO/orbsvcs/orbsvcs/PortableGroup/README | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/PortableGroup/README b/TAO/orbsvcs/orbsvcs/PortableGroup/README new file mode 100644 index 00000000000..7faf4cd6e46 --- /dev/null +++ b/TAO/orbsvcs/orbsvcs/PortableGroup/README @@ -0,0 +1,43 @@ +$Id$ + +This directory contains an implementation of the MIOP specification +for TAO. This currently includes: + + . The UIPMC (Unreliable IP multicast) Pluggable Protocol + . The PortableGroup extensions to the POA + . Request dispatch hooks to TAO to dispatch based on GroupID + +For examples on how to use MIOP, see $TAO_ROOT/orbsvcs/tests/Miop. + +Compilation Note: + +The PortableGroup library requires the CosNaming library due to references +to it in the IDL from the MIOP specification. It is not really used in +actual implementation. + +Implementation Notes: + +The current MIOP implementation is usable, but not complete according +to the final MIOP specification. The following are current limitations: + + 1. MIOP packet reassembly. This limits requests to about 5-6K in length + depending on the platform. Miop packet segmentation is available, + but not completely tested. + + 2. Disassociating a group reference from a servant is not implemented. + If interested in fixing this, be aware of the race conditions if a + servant disassociates during an upcall. The TAO event services all + have code to handle this issue. + + 3. Clients must call _unchecked_narrow to narrow any group references + since a multicast group manager isn't supported yet (and UIPMC does + not support twoway invocations) + + 4. TAO does not have a multicast group manager, so groups must be + assigned by creating a MIOP CORBALOC formatted reference. See + the tests or the MIOP specification for example group references. + + 5. TAO does not have a multicast gateway implementation, so using MIOP + is currently limited to networks that natively support multicast + + |