About DOM and CORBA

Anders W. Tell anderst at toolsmiths.se
Mon Apr 5 10:33:34 BST 1999


Hi Didier,

To make a long story short, Corba does NOT support what I call
"Component Binary Interface" CBI for short. This is what Microsoft have
implemented within their COM. Some Corba's have however implemented
"colocation" which is a shortcut route so marshalling is not performed
when calling objects within the same adress space.

See <http://www.cs.wustl.edu/~schmidt/TAO.html> for an example.

Here is a list of implementation options (faster to slower)

1.Private Component calls (not calling across Interfaces)
   No time penalty, same as normal C or C++ calls

2.Public Interface calls (calling other components using interface pointers)
   Same as C++ virtual function calls, slightly slower than above
   The MS COM and Mozilla way.

3.Optimized In-process Collocation call, to a Corba Object Adapter (OA)
   managed object.
   Call routed directly to object. This is outside the Corba spec.

4.In-process Collocation call, to a Corba OA managed object
   No marshaling, but call put in queue or rerouted by OA according to Corba guidelines.
   Corba Components implemented in same language.

5.Process to Process call, using Corba OA's
   Parameter marshaling and IIOP calls.
   Corba Components may be implemented in different languages.

6.Inter Machine Process to Process call, using Corba OA's
   Parameter marshaling, IIOP calls and network traffic.


/anders
--
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
/  Financial Toolsmiths AB  /
/  Anders W. Tell           /
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/



xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo at ic.ac.uk the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)




More information about the Xml-dev mailing list