Product: OpenFusion TAO
Version: ALL
Description:
How to start the TAO ORB?
Resolution:
There is no start process for TAO needed to run. Simply run a server application and a client application with the relevant libraries included.
The Server-side ORB process:
- Creates a new ORB instance using ORB_init
- Registers your Objects with the Server
- Calls Orb-run()
- The server is now ready to receive client requests.
The Client-side ORB process:
- Creates a new ORB instance using ORB_init
- Gets a reference to the Server via an IOR or the Naming Service
- Calls a method on a Server Object
#KnowledgeDocs
#OpenFusion